Skip to content

Commit

Permalink
build: update tsconfig.json
Browse files Browse the repository at this point in the history
Add `"skipLibCheck": true` to temporarily fix a build problem,
seeing: vuejs/core#6554.
When newer Vue released, drop it.
  • Loading branch information
SalHe committed Sep 4, 2022
1 parent 48f30f3 commit bc0bece
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.json
Expand Up @@ -9,7 +9,8 @@
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"]
"lib": ["esnext", "dom"],
"skipLibCheck": true // TODO https://github.com/vuejs/core/issues/6554 等待新版发布后更新vue版本并去除该选项
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
}

0 comments on commit bc0bece

Please sign in to comment.