2021-06-05 22:29:33 +08:00
|
|
|
{
|
2023-04-05 00:20:48 +08:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
|
"display": "Node Server Config",
|
|
|
|
|
"extends": "./base.json",
|
2021-06-05 22:29:33 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": false,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"target": "es6",
|
|
|
|
|
"sourceMap": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./"
|
|
|
|
|
},
|
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|