2023-03-10 14:24:15 +08:00
|
|
|
{
|
|
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noLib": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"preserveValueImports": false,
|
2023-03-10 14:57:49 +08:00
|
|
|
"allowJs": true,
|
|
|
|
"noEmit": true,
|
2023-03-10 14:24:15 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"experimentalDecorators": true,
|
2023-03-10 17:54:00 +08:00
|
|
|
"lib": ["dom", "esnext", "dom.iterable", "scripthost"],
|
2023-03-10 14:24:15 +08:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"removeComments": true,
|
2023-03-10 14:53:44 +08:00
|
|
|
"types": ["webpack-env", "vite/client"],
|
2023-03-10 14:24:15 +08:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"mock/**/*",
|
|
|
|
"src/**/*.ts",
|
|
|
|
"**/*.d.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"types/**/*.d.ts",
|
2023-03-13 16:55:51 +08:00
|
|
|
"types/**/*.ts",
|
2023-03-10 14:24:15 +08:00
|
|
|
],
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.js", "**/*.md", "src/**/*.md"]
|
|
|
|
}
|