We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c92c7ff commit c8e6259Copy full SHA for c8e6259
2 files changed
test/tsconfig.json
@@ -2,7 +2,12 @@
2
"extends": "../tsconfig.json",
3
"include": ["./unit/**/*.ts", "./*.ts"],
4
"compilerOptions": {
5
- "skipLibCheck": true
+ "skipLibCheck": true,
6
+ "lib": [
7
+ "ES2019",
8
+ // only used in tests
9
+ "ES2021.WeakRef"
10
+ ]
11
},
12
"compileOnSave": false
13
}
tsconfig.json
@@ -2,7 +2,7 @@
"root": true,
"allowJs": false,
- "target": "es2020",
+ "target": "ES2019",
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
@@ -19,11 +19,7 @@
19
"incremental": true,
20
"sourceMap": true,
21
"esModuleInterop": true,
22
- "lib": [
23
- "ES2020",
24
- // only used in tests
25
- "ES2021.WeakRef"
26
- ]
+ "lib": ["ES2019"]
27
28
"compileOnSave": true
29
0 commit comments