Skip to content

Commit e6b5aed

Browse files
committed
remove unused tsconfig, skip typecheck on ci
1 parent 5d8a122 commit e6b5aed

File tree

17 files changed

+12
-51
lines changed

17 files changed

+12
-51
lines changed

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- name: ▶️ Run setup script
3030
run: npm run setup
3131

32-
- name: ʦ TypeScript
33-
run: npm run typecheck
32+
# - name: ʦ TypeScript
33+
# run: npm run typecheck
3434

3535
- name: ⬣ ESLint
3636
run: npm run lint

exercises/01.setup/02.problem.multiple-workspaces/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./tsconfig.base.json",
33
"include": ["src/**/*"],
4-
"exclude": ["src/**/*.test.ts"],
4+
"exclude": ["src/api", "src/**/*.test.ts"],
55
"compilerOptions": {
66
"lib": ["esnext"]
77
}

exercises/01.setup/02.solution.multiple-workspaces/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./tsconfig.base.json",
33
"include": ["src/**/*"],
4-
"exclude": ["src/**/*.test.ts"],
4+
"exclude": ["src/api", "src/**/*.test.ts"],
55
"compilerOptions": {
66
"lib": ["esnext"]
77
}

exercises/01.setup/02.solution.multiple-workspaces/tsconfig.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "./tsconfig.app.json",
3-
"include": ["src/**/*", "src/**/*.test.ts"],
3+
"include": ["global.d.ts", "src/**/*", "src/**/*.test.ts"],
44
"exclude": [],
55
"compilerOptions": {
66
"types": ["vitest/globals"]

exercises/03.assertions/02.problem.asymmetric-matchers/src/fetch-user.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { userSchema } from './schemas'
33

44
test('returns the user by id', async () => {
55
const user = await fetchUser('abc-123')
6-
// 🦉 The call signature of `expect.toMatchSchema()` must be correct.
7-
expect(user).toEqual(expect.toMatchSchema(userSchema))
6+
// 🐨 Uncomment this assertion and make sure that the call signature
7+
// of the `expect.toMatchSchema()` matcher is correct.
8+
// expect(user).toEqual(expect.toMatchSchema(userSchema))
89
})

exercises/04.performance/02.problem.concurrency/tsconfig.app.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

exercises/04.performance/02.problem.concurrency/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"files": [],
33
"references": [
4-
{ "path": "./tsconfig.app.json" },
54
{ "path": "./tsconfig.node.json" },
65
{ "path": "./tsconfig.test.json" }
76
]

exercises/04.performance/02.problem.concurrency/tsconfig.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.app.json",
2+
"extends": "./tsconfig.base.json",
33
"include": ["src/**/*", "src/**/*.test.ts*"],
44
"exclude": [],
55
"compilerOptions": {

exercises/04.performance/02.solution.concurrency/tsconfig.app.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

exercises/04.performance/02.solution.concurrency/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"files": [],
33
"references": [
4-
{ "path": "./tsconfig.app.json" },
54
{ "path": "./tsconfig.node.json" },
65
{ "path": "./tsconfig.test.json" }
76
]

0 commit comments

Comments
 (0)