Skip to content

Commit

Permalink
chore(create-vite): add isolatedModules (#7697)
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red committed Apr 12, 2022
1 parent 0c928aa commit 8f28350
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/create-vite/template-lit-ts/tsconfig.json
Expand Up @@ -11,6 +11,7 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
Expand Down
3 changes: 2 additions & 1 deletion packages/create-vite/template-svelte-ts/tsconfig.json
Expand Up @@ -13,7 +13,8 @@
* of JS in `.svelte` files.
*/
"allowJs": true,
"checkJs": true
"checkJs": true,
"isolatedModules": true
},
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
"references": [{ "path": "./tsconfig.node.json" }]
Expand Down
1 change: 1 addition & 0 deletions packages/create-vite/template-vanilla-ts/tsconfig.json
Expand Up @@ -8,6 +8,7 @@
"strict": true,
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"noEmit": true,
"noUnusedLocals": true,
Expand Down

0 comments on commit 8f28350

Please sign in to comment.