SmartSubstationPlatform/riis-web/tsconfig.json

30 lines
959 B
JSON
Raw Normal View History

2025-04-24 14:53:21 +08:00
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"allowJs": true,
"paths": {
"@/*": ["src/*"]
},
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"allowSyntheticDefaultImports": true /* */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"types": ["element-plus/global","node"],
"typeRoots": [
"./node_modules/@types/",
"./types"
] /* './node_modules/@types'. */
},
"include": ["src/**/*.ts", "src/**/*.vue", "types/**/*.d.ts","src/typing.d.ts"],
"exclude": ["node_modules", "dist", "**/*.js"]
}