Skip to content

Commit

Permalink
feat: align vue tsconfig.json with official recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
unre4l committed May 11, 2023
1 parent 43f6ac9 commit 026f744
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/vue/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,16 @@
"skipLibCheck": true,
"sourceMap": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"jsx": "preserve",
"useDefineForClassFields": true,
"noImplicitAny": false,
"isolatedModules": true,
"baseUrl": ".",
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["node_modules"],
"exclude": [
"node_modules"
]
}

0 comments on commit 026f744

Please sign in to comment.