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 011d139 commit 0f8ca42Copy full SHA for 0f8ca42
tsconfig.json
@@ -1,13 +1,15 @@
1
{
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "target": "es2019",
5
- "lib": ["ES2019"],
6
- "outDir": "out",
7
- "sourceMap": true,
8
- "strict": true,
9
- "rootDir": "src",
10
- "esModuleInterop": true
11
- },
12
- "exclude": ["node_modules", ".vscode-test"]
+ "compilerOptions": {
+ "module": "commonjs",
+ "target": "ES2020",
+ "lib": ["ES2020"],
+ "allowSyntheticDefaultImports": true,
+ "moduleResolution": "node",
+ "rootDir": "src",
+ "outDir": "out",
+ "sourceMap": true,
+ "strict": true,
+ "esModuleInterop": true
13
+ },
14
+ "exclude": ["node_modules", ".vscode-test"]
15
}
0 commit comments