Files
lingji-work-fe/tsconfig.json

28 lines
641 B
JSON

{
"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,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"types": ["unplugin-vue-define-options/macros-global",]
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}