2020-12-14 17:32:37 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
2021-10-10 09:59:52 +08:00
|
|
|
"useDefineForClassFields": true,
|
2020-12-14 17:32:37 +08:00
|
|
|
"module": "esnext",
|
2021-10-10 09:59:52 +08:00
|
|
|
"moduleResolution": "node",
|
2020-12-14 17:32:37 +08:00
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
2021-10-10 09:59:52 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
2021-12-07 16:36:16 +08:00
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
2021-12-08 10:47:33 +08:00
|
|
|
},
|
|
|
|
"types": ["vite/client", "@intlify/vite-plugin-vue-i18n/client"]
|
2020-12-14 17:32:37 +08:00
|
|
|
},
|
2021-12-08 10:47:33 +08:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
2020-12-14 17:32:37 +08:00
|
|
|
}
|