You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bridge/tsconfig.json
+3-2
Original file line number
Diff line number
Diff line change
@@ -2,17 +2,18 @@
2
2
"compilerOptions": {
3
3
4
4
/* Language and Environment */
5
-
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
5
+
"target": "esnext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
6
6
7
7
/* Modules */
8
-
"module": "commonjs", /* Specify what module code is generated. */
8
+
"module": "esnext", /* Specify what module code is generated. */
9
9
"rootDir": "./src", /* Specify the root folder within your source files. */
10
10
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
11
11
"outDir": "./dist", /* Specify an output folder for all emitted files. */
12
12
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */
13
13
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
14
14
15
15
/* Type Checking */
16
+
"declaration": true,
16
17
"strict": true, /* Enable all strict type-checking options. */
0 commit comments