vite-vue3-lowcode/tsconfig.json

32 lines
887 B
JSON
Raw Normal View History

2021-05-04 21:54:05 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": false,
"jsx": "preserve",
"baseUrl": ".",
"allowJs": true,
"sourceMap": true,
"isolatedModules": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"experimentalDecorators": true,
"noImplicitAny": false,
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types/", "./types"],
2021-05-31 22:43:55 +08:00
"types": ["vite/client"],
2021-05-04 21:54:05 +08:00
"paths": {
2021-05-31 22:43:55 +08:00
"@/*": ["src/*"]
2021-05-04 21:54:05 +08:00
},
2021-05-31 22:43:55 +08:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2021-05-04 21:54:05 +08:00
},
2021-05-31 22:43:55 +08:00
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
2021-05-04 21:54:05 +08:00
"exclude": ["dist", "node_modules"]
}