Skip to content

Commit 6c75c65

Browse files
authored
Merge pull request #114 from ProgrammingDaisukiClub/shinya/fix_tsconfig
Fix tsconfig
2 parents 1fb9d39 + ddcfad8 commit 6c75c65

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"webpack": "^2.2.1"
3939
},
4040
"dependencies": {
41-
"@types/core-js": "^0.9.35",
4241
"marked": "^0.3.6",
4342
"react": "^15.4.2",
4443
"react-dom": "^15.4.2",

tsconfig.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22
"compilerOptions": {
33
"jsx": "react",
44
"module": "es6",
5+
"target": "es5",
6+
"lib": [
7+
"dom",
8+
"es7"
9+
],
510
"noImplicitAny": true,
611
"noUnusedLocals": true,
712
"noUnusedParameters": true,
813
"outDir": "public/build",
9-
"sourceMap": true,
10-
"target": "es5"
14+
"sourceMap": true
1115
},
1216
"exclude": [
1317
".tscache",

0 commit comments

Comments
 (0)