CADViewComponent/tsconfig.json
谢凡 f22f1acd52 移除webpack,替换为vite,删除弃用文件 (#1)
Co-authored-by: xief <1789784602@qq.com>
Reviewed-on: #1
2024-05-23 09:45:08 +08:00

34 lines
828 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"sourceMap": true,
"module": "ESNext",
"target": "ES2020",
"noLib": false,
"skipLibCheck": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"verbatimModuleSyntax":true,
/* Bundler mode */
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
/* Linting */
// "strict": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noFallthroughCasesInSwitch": true,
"jsx": "react",
"experimentalDecorators": true
},
"include": [
"./src/**/*",
"./config/**/*"
]
}