File tree 2 files changed +50
-1
lines changed
2 files changed +50
-1
lines changed Original file line number Diff line number Diff line change
1
+ --- a/tsconfig.json 2017-09-11 10:26:15.387081984 +0200
2
+ +++ b/tsconfig.json 2017-09-10 15:23:21.589934878 +0200
3
+ @@ -3,11 +3,16 @@
4
+ "compilerOptions": {
5
+ "outDir": "./dist/out-tsc",
6
+ "sourceMap": true,
7
+ + "baseUrl": ".",
8
+ "declaration": false,
9
+ + "module": "commonjs",
10
+ "moduleResolution": "node",
11
+ "emitDecoratorMetadata": true,
12
+ "experimentalDecorators": true,
13
+ "target": "es5",
14
+ + "skipLibCheck": true,
15
+ + "stripInternal": true,
16
+ + "noImplicitAny": false,
17
+ "typeRoots": [
18
+ "node_modules/@types"
19
+ ],
20
+ @@ -15,5 +26,14 @@
21
+ "es2017",
22
+ "dom"
23
+ ]
24
+ - }
25
+ + },
26
+ + "include": [
27
+ + "src/**/*.ts",
28
+ + "api/**/*.ts"
29
+ + ],
30
+ + "exclude": [
31
+ + "node_modules",
32
+ + "api/node_modules",
33
+ + "api"
34
+ + ]
35
+ }
Original file line number Diff line number Diff line change 3
3
"compilerOptions" : {
4
4
"outDir" : " ./dist/out-tsc" ,
5
5
"sourceMap" : true ,
6
+ "baseUrl" : " ." ,
6
7
"declaration" : false ,
8
+ "module" : " commonjs" ,
7
9
"moduleResolution" : " node" ,
8
10
"emitDecoratorMetadata" : true ,
9
11
"experimentalDecorators" : true ,
10
12
"target" : " es5" ,
13
+ "skipLibCheck" : true ,
14
+ "stripInternal" : true ,
15
+ "noImplicitAny" : false ,
11
16
"typeRoots" : [
12
17
" node_modules/@types"
13
18
],
14
19
"lib" : [
15
20
" es2017" ,
16
21
" dom"
17
22
]
18
- }
23
+ },
24
+ "include" : [
25
+ " src/**/*.ts" ,
26
+ " api/**/*.ts"
27
+ ],
28
+ "exclude" : [
29
+ " node_modules" ,
30
+ " api/node_modules" ,
31
+ " api"
32
+ ]
19
33
}
You can’t perform that action at this time.
0 commit comments