We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2bc8e3 commit 6e511a4Copy full SHA for 6e511a4
1 file changed
tsconfig.json
@@ -0,0 +1,35 @@
1
+{
2
+ "compilerOptions": {
3
+ "module": "commonjs",
4
+ "moduleResolution": "node",
5
+ "target": "es2018",
6
+ "outDir": "out", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
7
+ "lib": [
8
+ "es6",
9
+ "es2018",
10
+ "dom",
11
+ "ES2019",
12
+ "ES2020"
13
+ ],
14
+ "sourceMap": true,
15
+ "rootDir": "src",
16
+ "experimentalDecorators": true,
17
+ "allowSyntheticDefaultImports": true,
18
+ "strict": true,
19
+ "noImplicitAny": true,
20
+ "noImplicitThis": true,
21
+ "noUnusedLocals": true,
22
+ "noUnusedParameters": true,
23
+ "noFallthroughCasesInSwitch": true,
24
+ "removeComments": true,
25
+ "declaration": true
26
+ },
27
+ "exclude": [
28
+ "node_modules",
29
+ ".vscode-test",
30
+ ".vscode test",
31
+ "build",
32
+ "out",
33
+ "tmp"
34
+ ]
35
+}
0 commit comments