Skip to content

Commit 6e252b6

Browse files
committed
Update tsconfig
1 parent 27bba9d commit 6e252b6

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

tsconfig.json

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@
33
"module": "commonjs",
44
"declaration": true,
55
"target": "es2020",
6-
"lib": [
7-
"es2021.string",
8-
"es2018",
9-
"es2017.object",
10-
"dom"
11-
],
6+
"lib": ["es2021.string", "es2018", "es2017.object", "dom"],
127
"sourceMap": true,
138
"allowJs": false,
149
"removeComments": false,
@@ -24,16 +19,14 @@
2419
"resolveJsonModule": true,
2520
"noUnusedLocals": true,
2621
"incremental": true,
22+
"skipLibCheck": true
2723
},
2824
"exclude": [
2925
"src/stdlib/metacircular-interpreter",
3026
"src/stdlib/**/*.js",
3127
"node_modules",
3228
"dist",
33-
"sicp_publish",
29+
"sicp_publish"
3430
],
35-
"types": [
36-
"typePatches",
37-
"jest"
38-
]
31+
"types": ["typePatches", "jest"]
3932
}

tsconfig.prod.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist",
5-
"noEmit": false
5+
"noEmit": false,
6+
"skipLibCheck": true
67
},
78
// Excludes are overwritten when using extends, so we
89
// list all the excludes again

0 commit comments

Comments
 (0)