31 lines
960 B
JSON
31 lines
960 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"strict": false,
|
|
"strictFunctionTypes": false,
|
|
"noImplicitThis": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"allowJs": false,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@build/*": ["build/*"]
|
|
},
|
|
"types": ["node", "vite/client", "element-plus/global", "@pureadmin/table/volar", "unplugin-icons/types/vue", "@pureadmin/descriptions/volar"]
|
|
},
|
|
"include": ["mock/*.ts", "src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "types/*.d.ts", "vite.config.ts"],
|
|
"exclude": ["dist", "**/*.js", "node_modules"]
|
|
}
|