stdproject/frontend/tsconfig.json

20 lines
463 B
JSON
Raw Normal View History

2025-06-07 09:22:52 +08:00
{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./dist",
"baseUrl": ".",
"types": ["vite-plugin-vue-type-imports", "vue"],
"paths": {
"@/*": ["./src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"include": ["src/**/*"]
}