multiStoreAdmin/tsconfig.json

24 lines
469 B
JSON
Raw Normal View History

2024-06-01 09:08:19 +08:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"global.d.ts",
"src/**/*",
"src/**/*.vue",
"components.d.ts",
"auto-imports.d.ts",
"typings/**/*.d.ts"
],
"compilerOptions": {
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}