File tree Expand file tree Collapse file tree 3 files changed +25
-1
lines changed Expand file tree Collapse file tree 3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1111 "scripts" : {
1212 "build" : " npm run clean && babel src -d lib --extensions '.js,.ts'" ,
1313 "clean" : " rimraf lib/*" ,
14+ "lint" : " tsc" ,
1415 "test" : " echo \" Error: no test specified\" && exit 1"
1516 },
1617 "dependencies" : {},
1920 "@babel/core" : " ^7.0.0-beta.54" ,
2021 "@babel/preset-env" : " ^7.0.0-beta.54" ,
2122 "@babel/preset-typescript" : " ^7.0.0-beta.54" ,
22- "rimraf" : " ^2.6.2"
23+ "rimraf" : " ^2.6.2" ,
24+ "typescript" : " ^2.9.2"
2325 }
2426}
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "allowJs" : true ,
4+ "allowSyntheticDefaultImports" : true ,
5+ "baseUrl" : " ./" ,
6+ "rootDir" : " ./" ,
7+ "module" : " es2015" ,
8+ "noEmit" : true ,
9+ "noUnusedLocals" : true ,
10+ "noUnusedParameters" : true ,
11+ "pretty" : true ,
12+ "skipLibCheck" : true ,
13+ "sourceMap" : true
14+ },
15+ "include" : [
16+ " src"
17+ ]
18+ }
Original file line number Diff line number Diff line change @@ -1727,6 +1727,10 @@ trim-right@^1.0.1:
17271727 version "1.0.1"
17281728 resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
17291729
1730+ typescript@^2.9.2 :
1731+ version "2.9.2"
1732+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c"
1733+
17301734unicode-canonical-property-names-ecmascript@^1.0.4 :
17311735 version "1.0.4"
17321736 resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
You can’t perform that action at this time.
0 commit comments