ts/tsconfig.json

26 lines
429 B
JSON
Raw Permalink Normal View History

2024-12-09 06:44:52 +00:00
{
"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"
}
]
}