2021-07-08 05:40:27 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-07-17 14:17:28 +00:00
|
|
|
"target": "es2019",
|
2021-07-23 05:32:49 +00:00
|
|
|
"allowJs": true,
|
2021-07-08 05:40:27 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
2021-07-19 11:30:40 +00:00
|
|
|
"incremental": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@services/*": ["src/services/*"],
|
|
|
|
|
"@plugins/*": ["plugins/*"],
|
|
|
|
|
"@controllers/*": ["src/controllers/*"],
|
|
|
|
|
}
|
2021-07-08 05:40:27 +00:00
|
|
|
}
|
|
|
|
|
}
|