Skip to content

Commit dacd063

Browse files
fix: skip lib and tests for tsc
1 parent fd287d3 commit dacd063

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"moduleResolution": "node",
77
"sourceMap": true,
88
"outDir": "dist",
9+
"skipLibCheck": true
910
},
1011
"lib": [
1112
"es2015"
@@ -15,6 +16,10 @@
1516
],
1617
"exclude": [
1718
"node_modules",
18-
".gtconfig"
19+
".gtconfig",
20+
"**/*.test.ts",
21+
"**/*.spec.ts",
22+
"tests/**/*",
23+
"__tests__/**/*"
1924
],
2025
}

0 commit comments

Comments
 (0)