Skip to content

Commit ea28878

Browse files
committed
cat patches/tsconfig.json.patch | patch -p1
1 parent 132186c commit ea28878

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

patches/tsconfig.json.patch

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

tsconfig.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,31 @@
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
}

0 commit comments

Comments
 (0)