Skip to content

Commit d95c762

Browse files
committed
Re-enable test type checking with skipLibCheck
1 parent ee47f46 commit d95c762

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tsconfig.check.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@
44
"module": "esnext",
55
"moduleResolution": "bundler",
66
"noEmit": true,
7-
"types": ["node"],
7+
"paths": {
8+
"../dist/index": ["./src/index.ts"]
9+
},
10+
"skipLibCheck": true,
11+
"types": ["vitest/globals", "node"],
812
"verbatimModuleSyntax": false
913
},
10-
"include": ["src/**/*.ts"]
14+
"include": ["test/**/*.mts", "src/**/*.ts"]
1115
}

0 commit comments

Comments
 (0)