aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorJason Miller <[email protected]>2023-07-04 13:27:50 -0400
committerJason Miller <[email protected]>2023-07-04 13:27:50 -0400
commit3f81679127be71dd7ad1b2bbbd5a56df81c96290 (patch)
treeb831d58bea18484e59560ca4af680abbb323991c /tsconfig.json
parentbbba04a149f29755be637188a1f480a3ec228807 (diff)
fix TypeScript config
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json8
1 files changed, 6 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 563d58e..6d1b988 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,7 +5,11 @@
"noEmit": true,
"declaration": true,
"moduleResolution": "node",
- "esModuleInterop": true
+ "skipLibCheck": true,
+ "esModuleInterop": true,
},
- "include": ["src/*.ts", "test/*.ts"]
+ "include": [
+ "src/*.ts",
+ "test/*.ts"
+ ]
}