Skip to content
This repository was archived by the owner on May 7, 2018. It is now read-only.

Commit 3979772

Browse files
committed
build: correct enteprrise-scale path locations in tsconfig
1 parent 6808d5f commit 3979772

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

apps/bar/src/tsconfig.spec.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../../../out-tsc/spec/bar",
5-
"baseUrl": "./",
65
"module": "commonjs",
76
"target": "es5",
87
"types": [

apps/foo-bar/src/tsconfig.spec.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
2-
"extends": "../tsconfig.json",
2+
"extends": "../../../tsconfig.json",
33
"compilerOptions": {
4-
"outDir": "../out-tsc/spec",
5-
"baseUrl": "./",
4+
"outDir": "../out-tsc/spec/foo-bar",
65
"module": "commonjs",
76
"target": "es5",
87
"types": [

apps/foo/src/tsconfig.spec.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
2-
"extends": "../tsconfig.json",
2+
"extends": "../../../tsconfig.json",
33
"compilerOptions": {
4-
"outDir": "../out-tsc/spec",
5-
"baseUrl": "./",
4+
"outDir": "../out-tsc/spec/foo",
65
"module": "commonjs",
76
"target": "es5",
87
"types": [

tsconfig.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
"packages/common/src/public_api.ts"
2222
],
2323
"@enterprise/core": [
24-
"packages/common/src/public_api.ts"
24+
"packages/core/src/public_api.ts"
2525
],
2626
"@enterprise/framework": [
27-
"packages/common/src/public_api.ts"
27+
"packages/framework/src/public_api.ts"
2828
],
2929
"@enterprise/shared": [
30-
"packages/common/src/public_api.ts"
30+
"packages/shared/src/public_api.ts"
3131
],
3232
"@enterprise/util": [
33-
"packages/common/src/public_api.ts"
33+
"packages/util/src/public_api.ts"
3434
]
3535
}
3636
}

0 commit comments

Comments
 (0)