Skip to content

Commit 18f18e3

Browse files
committed
Fixes busted build
1 parent 730bedb commit 18f18e3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"e2e:teamcity": "ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.teamcity.e2e.json",
1818
"release": "npm run build && npm publish --access public",
1919
"build": "npm run build:cjs && npm run build:esm",
20-
"build:cjs": "tsc -p tsconfig.cjs.json && tsconfig-replace-paths -p tsconfig.json -o ./dist/cjs",
21-
"build:esm": "tsc -p tsconfig.esm.json && tsconfig-replace-paths -p tsconfig.json -o ./dist/esm",
20+
"build:cjs": "tsc -p tsconfig.cjs.json && tsconfig-replace-paths -p tsconfig.json -o ./dist/cjs -s ./src",
21+
"build:esm": "tsc -p tsconfig.esm.json && tsconfig-replace-paths -p tsconfig.json -o ./dist/esm -s ./src",
2222
"watch:cjs": "tsc -p tsconfig.cjs.json -w",
2323
"watch:esm": "tsc -p tsconfig.esm.json -w"
2424
},

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"rootDir": ".",
43
"baseUrl": ".",
54
"target": "es5",
65
"module": "commonjs",

0 commit comments

Comments
 (0)