ts/tsconfig.json
2024-12-09 14:44:52 +08:00

26 lines
429 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"env.d.ts",
"*.d.ts",
"src/global.d.ts",
"src/**/*",
"src/**/*.vue"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"lib": ["es2019", "dom"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}