You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
884 B
JSON
32 lines
884 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
// "useDefineForClassFields": true,
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"strictNullChecks": false,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"strictFunctionTypes": false,
|
|
"lib": ["esnext", "dom"],
|
|
"noImplicitAny": false,
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"experimentalDecorators": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": ["vite/client"],
|
|
"skipLibCheck": true,
|
|
"removeComments": true,
|
|
// 允许默认导入
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue", "src/types/**/*.d.ts", "vite.config.ts"],
|
|
"exclude": ["node_modules", "dist", "**/*.js", "**/*.md", "src/**/*.md"]
|
|
}
|