Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
tsconfig.json 717 Bytes
Copy Edit Raw Blame History
yml-qq authored 2023-07-02 23:49 . first commit
{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "Node",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
// "paths": { /*定义别名*/
// "@/*": [
// "src/*"
// ]
// }
},
"exclude": [
"node_modules",
"dist"
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化