Files
lingji-work-fe/tsconfig.json

28 lines
641 B
JSON
Raw Normal View History

2025-06-16 14:42:26 +08:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "config/unplugin/*.d.ts", "src/**/*/*.tsx"],
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": false,
2025-06-16 14:42:26 +08:00
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"types": ["unplugin-vue-define-options/macros-global",]
2025-06-16 14:42:26 +08:00
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}