加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
winjo 提交于 2024-09-03 20:16 . release
{
"compilerOptions": {
"module": "CommonJS",
"target": "ES2022",
"moduleResolution": "node",
"strict": true,
"strictPropertyInitialization": false,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"importHelpers": true,
"resolveJsonModule": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"noEmitOnError": false,
"noImplicitAny": false,
"skipLibCheck": true,
"strictFunctionTypes": false,
"jsx": "react",
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"noUnusedLocals": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"declaration": true,
"useDefineForClassFields": false,
"lib": [
"DOM",
"ES2022",
],
"paths": {
"@/*": ["./src/*"],
},
"typeRoots": [
"./node_modules/@types",
"./typings"
]
},
"include": [
"src",
"build",
"typings",
],
"exclude": [
"node_modules",
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化