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 76fc8f4 commit 15549b9Copy full SHA for 15549b9
tsconfig.json
@@ -1,16 +1,19 @@
1
{
2
"compilerOptions": {
3
- "target": "ES2020",
4
- "module": "commonjs",
5
- "lib": ["ES2020"],
6
"declaration": true,
7
- "outDir": "dist",
8
- "rootDir": "src",
9
- "strict": true,
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "lib": [
+ "ES2020"
+ ],
+ "module": "commonjs",
10
+ "moduleResolution": "node",
11
"noUnusedLocals": true,
12
"noUnusedParameters": true,
- "moduleResolution": "node",
13
+ "outDir": "dist",
14
+ "rootDir": "src",
15
"skipLibCheck": true,
- "forceConsistentCasingInFileNames": true
16
+ "strict": true,
17
+ "target": "ES2020"
18
}
19
0 commit comments