Skip to content

Commit

Permalink
perf(bundle): improves bundle size
Browse files Browse the repository at this point in the history
  • Loading branch information
huafu committed Sep 4, 2018
1 parent 9b5a841 commit 34eedc3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
16 changes: 7 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@
},
"homepage": "https://github.com/kulshekhar/ts-jest#readme",
"dependencies": {
"bs-logger": "^0.2.3",
"bs-logger": "^0.2.5",
"buffer-from": "^1.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json5": "^2.0.1",
"make-error": "^1.3.5",
"mkdirp": "^0.5.1",
"semver": "^5.5.1",
"tslib": "^1.9.3",
"yargs-parser": "^10.1.0"
},
"peerDependencies": {
Expand Down Expand Up @@ -98,7 +98,6 @@
"husky": "^0.14.3",
"jest": "^23.4.1",
"js-yaml": "^3.12.0",
"json5": "^2.0.1",
"lint-staged": "^7.2.2",
"lodash.memoize": "^4.1.2",
"lodash.merge": "^4.6.1",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"inlineSources": true,
"sourceMap": false,
"inlineSources": false,
"inlineSourceMap": false,
"removeComments": true,
"outDir": "dist",
"rootDir": "src",
},
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"downlevelIteration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"importHelpers": false,
"inlineSourceMap": true,
"lib": [
"es2015",
Expand Down

0 comments on commit 34eedc3

Please sign in to comment.