generator-code-server/generator-code-web/tsconfig.json

38 lines
856 B
JSON
Raw Permalink Normal View History

2025-04-23 11:22:46 +08:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
2025-05-11 15:49:11 +08:00
"moduleResolution": "node",
2025-04-23 11:22:46 +08:00
"strict": false,
"jsx": "preserve",
"importHelpers": true,
"experimentalDecorators": true,
"strictFunctionTypes": false,
"skipLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"baseUrl": ".",
"allowJs": false,
"resolveJsonModule": true,
2025-05-11 15:49:11 +08:00
"lib": ["ESNext", "DOM"],
2025-04-23 11:22:46 +08:00
"paths": {
2025-05-11 15:49:11 +08:00
"@/*": ["src/*"],
"@build/*": ["build/*"]
2025-04-23 11:22:46 +08:00
},
2025-05-11 15:49:11 +08:00
"types": ["node", "vite/client"]
2025-04-23 11:22:46 +08:00
},
"include": [
"build/**",
"mock/*.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"vite.config.ts",
"src/**/*.d.ts"
],
2025-05-11 15:49:11 +08:00
"exclude": ["dist", "node_modules"]
2025-04-23 11:22:46 +08:00
}