Skip to content

Commit 4c63868

Browse files
Use array syntax for tsconfig "extends"
1 parent fc098d7 commit 4c63868

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

benchmarks/basic/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": ["../../tsconfig.base.json"],
33
"compilerOptions": {
44
"outDir": "dist"
55
},

examples/basic/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": ["../../tsconfig.base.json"],
33
"compilerOptions": {
44
"outDir": "dist"
55
},

examples/declare-workflow/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": ["../../tsconfig.base.json"],
33
"compilerOptions": {
44
"outDir": "dist"
55
},

examples/with-schema-validation/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": ["../../tsconfig.base.json"],
33
"compilerOptions": {
44
"outDir": "dist"
55
},

examples/workflow-discovery/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": ["../../tsconfig.base.json"],
33
"compilerOptions": {
44
"outDir": "dist"
55
},

packages/backend-sqlite/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": ["../../tsconfig.base.json"],
33
"compilerOptions": {
44
"outDir": "dist"
55
},

packages/backend-test/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": ["../../tsconfig.base.json"],
33
"compilerOptions": {
44
"outDir": "dist"
55
},

packages/cli/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.base.json",
2+
"extends": ["../../tsconfig.base.json"],
33
"compilerOptions": {
44
"outDir": "dist"
55
},

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717

1818
// project-wide settings for configs, workflows, etc.
19-
"extends": "./tsconfig.base.json",
19+
"extends": ["./tsconfig.base.json"],
2020
"compilerOptions": {
2121
"outDir": "dist"
2222
},

0 commit comments

Comments
 (0)