37 lines
916 B
JSON
37 lines
916 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": ["webpack-env", "vite/client"],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
"strictNullChecks": false,
|
|
"experimentalDecorators": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"importsNotUsedAsValues": "preserve"
|
|
},
|
|
"include": [
|
|
"src/App.vue",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx",
|
|
"node_modules/ant-design-vue/typings/global.d.ts"
|
|
],
|
|
"exclude": ["node_modules/ant-design-vue/lib/**"]
|
|
}
|