vue3-homework/tsconfig.app.json

14 lines
324 B
JSON
Raw Permalink Normal View History

2025-07-31 00:42:47 +08:00
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
2025-08-01 00:03:53 +08:00
"verbatimModuleSyntax": false,
2025-07-31 00:42:47 +08:00
"paths": {
"@/*": ["./src/*"]
}
}
}