Skip to content

Commit 27e947d

Browse files
committed
fix(migration): updated tsconfig.json
1 parent 259a7a3 commit 27e947d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

tsconfig.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
{
22
"compilerOptions": {
33
/* Language and Environment */
4-
"target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
4+
"target": "es2020",
55
/* Modules */
66
"module": "CommonJS" /* Specify what module code is generated. */,
77
"typeRoots": [
8-
"./node_modules/@types",
9-
"./types"
8+
"./node_modules/@types"
109
] /* Specify multiple folders that act like './node_modules/@types'. */,
11-
/* Interop Constraints */
12-
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
1310
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
1411
/* Type Checking */
1512
"strict": true /* Enable all strict type-checking options. */
1613
},
17-
"include": ["src/*", "src/types/**/*"]
14+
"include": ["src/*"]
1815
}

0 commit comments

Comments
 (0)