Skip to content

Commit 6e511a4

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent b2bc8e3 commit 6e511a4

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

tsconfig.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)