vite-vue3-lowcode/tsconfig.json

50 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2021-05-04 21:54:05 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
2021-09-07 16:09:59 +08:00
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
2021-05-04 21:54:05 +08:00
"esModuleInterop": true,
2021-09-07 16:09:59 +08:00
"allowSyntheticDefaultImports": true,
2021-05-04 21:54:05 +08:00
"experimentalDecorators": true,
2021-09-07 16:09:59 +08:00
"sourceMap": true,
"pretty": true,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"suppressImplicitAnyIndexErrors": true,
"strictPropertyInitialization": false,
"downlevelIteration": true,
"noUnusedLocals": false,
2021-05-04 21:54:05 +08:00
"noImplicitAny": false,
2021-09-07 16:09:59 +08:00
"noImplicitThis": true,
"removeComments": false,
"strictFunctionTypes": false,
"baseUrl": ".",
2022-07-03 02:38:58 +08:00
"types": ["vite/client", "node", "element-plus/global", "unplugin-vue-define-options"],
"typeRoots": ["./node_modules/@types/", "./types"],
2021-05-04 21:54:05 +08:00
"paths": {
2022-07-03 02:38:58 +08:00
"@/*": ["src/*"]
2021-05-04 21:54:05 +08:00
},
2022-07-03 02:38:58 +08:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2021-05-04 21:54:05 +08:00
},
2021-09-07 16:09:59 +08:00
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"types/**/*.d.ts",
"types/**/*.ts",
"preview/**/*.ts",
"preview/**/*.d.ts",
"preview/**/*.tsx",
2022-01-16 16:21:27 +08:00
"preview/**/*.vue",
"components.d.ts",
"auto-imports.d.ts"
2021-09-07 16:09:59 +08:00
],
2022-07-03 02:38:58 +08:00
"exclude": ["node_modules", "dist"]
2021-05-04 21:54:05 +08:00
}