blossom/blossom-web/tsconfig.json
2024-01-08 21:09:03 +08:00

28 lines
442 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"env/env.d.ts",
"src/**/*",
"src/**/*.vue",
"src/**/*.d.ts",
"declaration.d.ts",
"global.d.ts"
],
"compilerOptions": {
"ignoreDeprecations": "5.0",
"baseUrl": "./",
"types": [
"node"
],
"paths": {
"@/*": [
"./src/*"
]
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}