mirror of
https://github.com/chaos-zhu/easynode.git
synced 2026-05-13 09:09:23 +08:00
22 lines
475 B
JSON
22 lines
475 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@app/*": ["./app/*"],
|
|
"@controller/*": ["./app/controller/*"],
|
|
"@middlewares/*": ["./app/middlewares/*"],
|
|
"@router/*": ["./app/router/*"],
|
|
"@socket/*": ["./app/socket/*"],
|
|
"@utils/*": ["./app/utils/*"],
|
|
"@config/*": ["./app/config/*"]
|
|
},
|
|
"module": "commonjs",
|
|
"target": "ES2020"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"app/db"
|
|
]
|
|
}
|