Start-GPT commited on
Commit
311c3b3
1 Parent(s): a0b1068

Create tsconfig.json

Browse files
Files changed (1) hide show
  1. client/src/tsconfig.json +26 -0
client/src/tsconfig.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "allowSyntheticDefaultImports": true,
3
+ "compilerOptions": {
4
+ "outDir": "../dist/",
5
+ "module": "esnext",
6
+ "target": "es2015",
7
+ "moduleResolution": "node",
8
+ "sourceMap": true,
9
+ "lib": [
10
+ "es2016",
11
+ "dom"
12
+ ],
13
+ "typeRoots": [
14
+ "./customTypings",
15
+ "node_modules/@types"
16
+ ]
17
+ },
18
+ "include": [
19
+ "ts/**/*.ts"
20
+ ],
21
+ "exclude": [
22
+ "node_modules",
23
+ "types",
24
+ "ts/test.ts"
25
+ ]
26
+ }