File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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 33 "compilerOptions" : {
44 "outDir" : " ./dist/out-tsc" ,
55 "sourceMap" : true ,
6+ "baseUrl" : " ." ,
67 "declaration" : false ,
8+ "module" : " commonjs" ,
79 "moduleResolution" : " node" ,
810 "emitDecoratorMetadata" : true ,
911 "experimentalDecorators" : true ,
1012 "target" : " es5" ,
13+ "skipLibCheck" : true ,
14+ "stripInternal" : true ,
15+ "noImplicitAny" : false ,
1116 "typeRoots" : [
1217 " node_modules/@types"
1318 ],
1419 "lib" : [
1520 " es2017" ,
1621 " dom"
1722 ]
18- }
23+ },
24+ "include" : [
25+ " src/**/*.ts" ,
26+ " api/**/*.ts"
27+ ],
28+ "exclude" : [
29+ " node_modules" ,
30+ " api/node_modules" ,
31+ " api"
32+ ]
1933}
You can’t perform that action at this time.
0 commit comments