Skip to content

Commit 407a593

Browse files
committed
fix: set allowJs to false in starters' tsconfig.json files
1 parent 9f6dfc8 commit 407a593

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

starters/react-typescript/src/client/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"allowImportingTsExtensions": true,
5-
"allowJs": false,
65
"jsx": "react-jsx",
76
"lib": ["DOM", "DOM.Iterable", "ESNext"],
87
"module": "ESNext",

starters/react-typescript/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"allowJs": true,
3+
"allowJs": false,
44
"allowSyntheticDefaultImports": true,
55
"checkJs": false,
66
"esModuleInterop": true,

starters/vue-typescript/src/client/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"allowImportingTsExtensions": true,
5-
"allowJs": false,
65
"jsx": "preserve",
76
"lib": ["DOM", "DOM.Iterable", "ESNext"],
87
"module": "ESNext",

starters/vue-typescript/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"allowJs": true,
3+
"allowJs": false,
44
"allowSyntheticDefaultImports": true,
55
"checkJs": false,
66
"esModuleInterop": true,

0 commit comments

Comments
 (0)