29 lines
717 B
JSON
29 lines
717 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2019",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"paths": {
|
|
"@src/*": ["src/*"],
|
|
"@mdoules/*": ["src/modules/*"],
|
|
"@libs/*": ["src/libs/*"],
|
|
"@tests/*": ["tests/*"]
|
|
}
|
|
}
|
|
}
|