file-viewer-demo/tsconfig.json

17 lines
273 B
JSON
Raw Normal View History

2023-04-24 05:44:48 +00:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}