init
This commit is contained in:
@@ -3,20 +3,19 @@
|
||||
"compilerOptions": {
|
||||
"target": "es2017",
|
||||
"module": "commonjs",
|
||||
"strict": true,
|
||||
"strict": false,
|
||||
"noImplicitAny": false,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"charset": "utf8",
|
||||
"allowJs": false,
|
||||
"pretty": true,
|
||||
"noEmitOnError": false,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"allowUnreachableCode": false,
|
||||
"allowUnusedLabels": false,
|
||||
"noUnusedLocals": false,
|
||||
"noUnusedParameters": false,
|
||||
"allowUnreachableCode": true,
|
||||
"allowUnusedLabels": true,
|
||||
"strictPropertyInitialization": false,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noFallthroughCasesInSwitch": false,
|
||||
"skipLibCheck": true,
|
||||
"skipDefaultLibCheck": true,
|
||||
"strictNullChecks": false,
|
||||
@@ -24,13 +23,21 @@
|
||||
"importHelpers": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@db/*": ["app/db/*"],
|
||||
"@consts": ["app/consts"]
|
||||
},
|
||||
"@db/*": ["../shared/db/*"],
|
||||
"@consts": ["../shared/consts"],
|
||||
"@domain/*": ["../shared/domain/*"],
|
||||
"@resource/*": ["../shared/resource/*"],
|
||||
"@pubUtils/*": ["../shared/pubUtils/*"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"app/**/*", // 只检查app目录下的所有文件(按需修改)
|
||||
"typings/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"app/public",
|
||||
"app/views",
|
||||
"node_modules*"
|
||||
"node_modules",
|
||||
"**/node_modules/**"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user