go-view/tsconfig.app.json
2024-11-20 20:33:02 +08:00

17 lines
449 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "types/**/*"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
// TODO: waiting fix @typescript-eslint/consistent-type-imports
"verbatimModuleSyntax": false
}
}