fix: Vue Added vue to the tsconfig
This commit is contained in:
parent
96ed4aa155
commit
488e6a8821
1 changed files with 4 additions and 2 deletions
|
|
@ -2,8 +2,10 @@
|
|||
"extends": "./tsconfig.app.json",
|
||||
|
||||
// Override to include only test files and clear exclusions.
|
||||
// Application code imported in tests is automatically included via module resolution.
|
||||
"include": ["src/**/__tests__/*", "env.d.ts"],
|
||||
// .vue files must be explicitly included so vue-tsc enables .vue module
|
||||
// resolution for this project (relying on transitive module resolution
|
||||
// from test imports is unreliable in `vue-tsc --build`).
|
||||
"include": ["src/**/__tests__/*", "env.d.ts", "src/**/*.vue"],
|
||||
"exclude": [],
|
||||
|
||||
"compilerOptions": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue