32 lines
911 B
JSON
32 lines
911 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": ["@intlify/vite-plugin-vue-i18n/client", "vite/client", "element-plus/global"],
|
|
"typeRoots": ["./node_modules/@types/", "./types"]
|
|
},
|
|
"include": ["src/**/*", "types/**/*.d.ts", "mock/**/*.ts"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|