Skip to content

Commit d96dc0f

Browse files
committed
Refactor tsconfig.json to update module target to es2015, remove allowJs and moduleDetection options, and clean up unused settings for improved TypeScript configuration.
1 parent 38e4aa9 commit d96dc0f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tsconfig.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,15 @@
33
"esModuleInterop": true,
44
"skipLibCheck": true,
55
"target": "esnext",
6-
"allowJs": true,
76
"resolveJsonModule": true,
8-
"moduleDetection": "force",
97
"moduleResolution": "bundler",
10-
"module": "preserve",
8+
"module": "es2015",
119
"jsx": "react",
1210
"isolatedModules": true,
1311
"verbatimModuleSyntax": true,
1412
"strict": true,
1513
"noUncheckedIndexedAccess": true,
16-
"noImplicitOverride": true,
17-
"noImplicitAny": true,
1814
"lib": ["esnext", "dom", "dom.iterable"],
19-
"baseUrl": ".",
2015
"rootDir": "."
2116
},
2217
"include": ["src/**/*", "tsup.config.ts"]

0 commit comments

Comments
 (0)