Skip to content

Commit 8e68573

Browse files
committed
Type-check root files with tsc
1 parent 3a7e7e2 commit 8e68573

File tree

12 files changed

+13
-9
lines changed

12 files changed

+13
-9
lines changed

apps/demo/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": ["src"]
3+
"include": ["*", "src"]
44
}

apps/storybook/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": [".storybook/**/*", "src"]
3+
"include": ["*", ".storybook/**/*", "src"]
44
}

cypress/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "../tsconfig.json",
3+
"include": ["*", "e2e"],
34
"compilerOptions": {
45
"isolatedModules": false,
56
"sourceMap": false,
@@ -8,6 +9,5 @@
89
"@testing-library/cypress",
910
"@simonsmith/cypress-image-snapshot/types"
1011
]
11-
},
12-
"include": ["*", "e2e"]
12+
}
1313
}

packages/app/tsconfig.build.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
3+
"include": ["src"],
34
"exclude": ["**/*.test.ts"],
45
"compilerOptions": {
56
"rootDir": "src",

packages/app/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": ["src"]
3+
"include": ["*", "src"]
44
}

packages/h5wasm/tsconfig.build.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
3+
"include": ["src"],
34
"compilerOptions": {
45
"rootDir": "src",
56
"outDir": "dist-ts",

packages/h5wasm/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": ["src"]
3+
"include": ["*", "src"]
44
}

packages/lib/tsconfig.build.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
3+
"include": ["src"],
34
"exclude": ["**/*.test.ts"],
45
"compilerOptions": {
56
"rootDir": "src",

packages/lib/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": ["src"]
3+
"include": ["*", "src"]
44
}

packages/shared/tsconfig.build.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
3+
"include": ["src"],
34
"exclude": ["**/*.test.ts"],
45
"compilerOptions": {
56
"rootDir": "src",

0 commit comments

Comments
 (0)