@@@@@@
This commit is contained in:
43
tsconfig.json
Normal file
43
tsconfig.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"useDefineForClassFields": true,
|
||||
"module": "ESNext",
|
||||
"lib": ["ESNext", "DOM", "DOM.Iterable", "WebWorker"],
|
||||
"skipLibCheck": true,
|
||||
/* Bundler mode */
|
||||
"allowJs": true,
|
||||
"moduleResolution": "Node",
|
||||
"allowImportingTsExtensions": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "preserve",
|
||||
"sourceMap": true,
|
||||
/* Linting */
|
||||
"strict": true,
|
||||
"paths": {
|
||||
"~/*": ["./*"],
|
||||
"/@/*": ["./src/*"],
|
||||
"/@vab/*": ["./library/*"]
|
||||
},
|
||||
"types": ["element-plus/global", "vite/client", "vite-plugin-pwa/vue", "vite-plugin-svg-icons/client"]
|
||||
},
|
||||
"include": [
|
||||
"library/**/*.ts",
|
||||
"library/**/*.vue",
|
||||
"src/**/*.ts",
|
||||
"src/**/*.d.ts",
|
||||
"src/**/*.tsx",
|
||||
"src/**/*.vue",
|
||||
"types/**/*.d.ts",
|
||||
"types/**/*.ts",
|
||||
"mock/**/*.ts",
|
||||
"vite.config.ts",
|
||||
"vite.config.dev.ts",
|
||||
"vite.config.website.ts"
|
||||
],
|
||||
"exclude": ["node_modules", "dist", "**/*.js"]
|
||||
}
|
||||
Reference in New Issue
Block a user