39 lines
897 B
JSON
39 lines
897 B
JSON
|
{
|
|||
|
// TODO: Warn: 在进行TS类型检查的时候会检查到workflow工作区中的文件,原因未知
|
|||
|
"compilerOptions": {
|
|||
|
"lib": [
|
|||
|
"ES2020",
|
|||
|
"ES2021",
|
|||
|
"ESNext",
|
|||
|
"DOM",
|
|||
|
"DOM.Iterable"
|
|||
|
],
|
|||
|
"noEmit": true,
|
|||
|
"target": "esnext",
|
|||
|
"module": "ESNext",
|
|||
|
"moduleResolution": "Bundler",
|
|||
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|||
|
"baseUrl": ".",
|
|||
|
"paths": {
|
|||
|
// 为了保证导入不与被引入项目冲突,不应该配置'@/*'别名
|
|||
|
"@libs/*": [
|
|||
|
"./src/*"
|
|||
|
]
|
|||
|
},
|
|||
|
/* Linting */
|
|||
|
"strict": true,
|
|||
|
"erasableSyntaxOnly": false,
|
|||
|
"noFallthroughCasesInSwitch": true,
|
|||
|
"noUncheckedSideEffectImports": true,
|
|||
|
"composite": true
|
|||
|
},
|
|||
|
"include": [
|
|||
|
"src/**/*.ts",
|
|||
|
"src/**/*.tsx",
|
|||
|
],
|
|||
|
"exclude": [
|
|||
|
"src/**/__tests__/*",
|
|||
|
"dist",
|
|||
|
"node_modules/**"
|
|||
|
]
|
|||
|
}
|