Skip to content

Commit e6cb977

Browse files
committed
Update TypeScript configuration paths to reference internal tsconfig files
1 parent 3ad89d4 commit e6cb977

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/nextjs-localstorage/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"exclude": ["node_modules"],
3-
"extends": "tsconfig/nextjs.json",
3+
"extends": "../../internal/tsconfig/nextjs.json",
44
"compilerOptions": {
55
"rootDir": ".",
66
"outDir": "dist",

internal/examples-ui/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "tsconfig/react-library.json",
2+
"extends": "../tsconfig/react-library.json",
33
"include": ["src"],
44
"exclude": ["dist", "node_modules"]
55
}

packages/drop/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "tsconfig/react-library.json",
2+
"extends": "../../internal/tsconfig/react-library.json",
33
"include": ["."],
44
"exclude": ["dist", "build", "node_modules"]
55
}

packages/hooks/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "tsconfig/react-library.json",
2+
"extends": "../../internal/tsconfig/react-library.json",
33
"include": ["src"],
44
"exclude": ["dist", "node_modules"]
55
}

packages/sdk-gen/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": "../../internal/tsconfig/base.json",
33
"include": ["."],
44
"exclude": ["dist", "node_modules"]
55
}

packages/shopify-helpers/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "tsconfig/react-library.json",
2+
"extends": "../../internal/tsconfig/react-library.json",
33
"include": ["src", "src/sdk-gen/config.js"],
44
"exclude": ["dist", "node_modules"],
55
"compilerOptions": {

0 commit comments

Comments
 (0)