移除webpack,替换为vite,删除弃用文件 (#1)
Co-authored-by: xief <1789784602@qq.com> Reviewed-on: MES/CADViewComponent#1
This commit is contained in:
@@ -2,21 +2,27 @@
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"sourceMap": true,
|
||||
"module": "commonjs",
|
||||
"target": "es2020",
|
||||
"module": "ESNext",
|
||||
"target": "ES2020",
|
||||
"noLib": false,
|
||||
"moduleResolution": "node",
|
||||
"skipLibCheck": true,
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"verbatimModuleSyntax":true,
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "bundler",
|
||||
"esModuleInterop": true,
|
||||
"lib": [
|
||||
"esnext",
|
||||
"dom"
|
||||
],
|
||||
"types": [
|
||||
"node",
|
||||
"webpack-env",
|
||||
"webpack-dev-server",
|
||||
],
|
||||
"allowImportingTsExtensions": true,
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
|
||||
/* Linting */
|
||||
// "strict": true,
|
||||
// "noUnusedLocals": true,
|
||||
// "noUnusedParameters": true,
|
||||
// "noFallthroughCasesInSwitch": true,
|
||||
|
||||
"jsx": "react",
|
||||
"experimentalDecorators": true
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user