Skip to content

Commit a7c24e1

Browse files
Fix watch build
1 parent 82b35d8 commit a7c24e1

File tree

26 files changed

+100
-41
lines changed

26 files changed

+100
-41
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"extends": "./tsconfig.json",
3-
"include": ["src/**/*.ts", "test/**/*.ts"]
3+
"include": ["src/**/*.ts", "test/**/*.ts"],
4+
"references": [{ "path": "../compiler/tsconfig.build.json" }]
45
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"extends": "./tsconfig.json",
3-
"include": ["src/**/*.ts", "test/**/*.ts"]
3+
"include": ["src/**/*.ts", "test/**/*.ts"],
4+
"references": [{ "path": "../compiler/tsconfig.build.json" }]
45
}
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
3-
"include": ["src/**/*.ts", "test/**/*.ts"]
3+
"include": ["src/**/*.ts", "test/**/*.ts"],
4+
"references": [
5+
{ "path": "../compiler/tsconfig.build.json" },
6+
{ "path": "../rest/tsconfig.build.json" }
7+
]
48
}
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
{
22
"extends": "./tsconfig.json",
3-
"include": ["src/**/*.ts", "test/**/*.ts"]
3+
"include": ["src/**/*.ts", "test/**/*.ts"],
4+
"references": [
5+
{ "path": "../compiler/tsconfig.build.json" },
6+
{ "path": "../rest/tsconfig.build.json" },
7+
{ "path": "../openapi/tsconfig.build.json" }
8+
]
49
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"extends": "./tsconfig.json",
3-
"include": ["src/**/*.ts", "generated-defs/**/*.ts", "test/**/*.ts"]
3+
"include": ["src/**/*.ts", "generated-defs/**/*.ts", "test/**/*.ts"],
4+
"references": [{ "path": "../compiler/tsconfig.build.json" }]
45
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
33
"include": ["src"],
4-
"exclude": ["src/index.ts", "src/emitter.ts", "**/*.test.ts", "**/*.test.tsx"]
4+
"exclude": ["src/index.ts", "src/emitter.ts", "**/*.test.ts", "**/*.test.tsx"],
5+
"references": [{ "path": "../compiler/tsconfig.build.json" }]
56
}
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
22
"extends": "./tsconfig.json",
3-
"include": ["src/**/*.ts", "generated-defs/**/*.ts", "test/**/*.ts"]
3+
"include": ["src/**/*.ts", "generated-defs/**/*.ts", "test/**/*.ts"],
4+
"references": [
5+
{ "path": "../compiler/tsconfig.build.json" },
6+
{ "path": "../http/tsconfig.build.json" },
7+
{ "path": "../rest/tsconfig.build.json" },
8+
{ "path": "../versioning/tsconfig.build.json" }
9+
]
410
}

packages/http-server-js/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "../../tsconfig.base.json",
3-
"references": [{ "path": "../compiler/tsconfig.json" }],
3+
"references": [{ "path": "../compiler/tsconfig.build.json" }],
44
"compilerOptions": {
55
"outDir": "dist",
66
"rootDir": ".",
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
{
22
"extends": "./tsconfig.json",
3-
"references": [
4-
{ "path": "../spec-api/tsconfig.build.json" },
5-
{ "path": "../spector/tsconfig.build.json" }
6-
],
73
"exclude": ["**/*.test.*", "test/**/*"]
84
}

packages/http/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
33
"include": ["src/**/*.ts", "generated-defs/**/*.ts"],
4-
"exclude": ["**/*.test.*"]
4+
"exclude": ["**/*.test.*"],
5+
"references": [{ "path": "../compiler/tsconfig.build.json" }]
56
}

0 commit comments

Comments
 (0)