We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d58d96 commit ef2caecCopy full SHA for ef2caec
tsconfig.json
@@ -1,15 +1,24 @@
1
{
2
"compilerOptions": {
3
- "target": "es6",
+ /* Type checking */
4
+ "strict": true,
5
+
6
+ /* Modules */
7
"module": "esnext",
8
"moduleResolution": "node",
- "sourceMap": true,
- "outDir": "./lib",
9
+ "rootDir": "./src",
10
11
+ /* Language and Environment */
12
+ "target": "es6",
13
14
+ /* Emit */
15
"declaration": true,
16
"declarationMap": true,
- "rootDir": "./src",
17
"importHelpers": true,
- "strict": true,
18
+ "sourceMap": true,
19
+ "outDir": "./lib",
20
21
+ /* Interop Constraints */
22
"esModuleInterop": true
23
},
24
"exclude": [
0 commit comments