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 3447753 commit 34142dfCopy full SHA for 34142df
tsconfig.json
@@ -1,20 +1,17 @@
1
{
2
"compilerOptions": {
3
- "target": "ES2020",
4
- "module": "commonjs",
5
- "resolveJsonModule": true,
6
- "moduleResolution": "node",
7
- "outDir": "./dist",
8
- "declaration": true,
9
- "esModuleInterop": true,
10
- "strict": true,
11
- "skipLibCheck": true
+ "extendedDiagnostics": true,
+ "strict": true,
+ "target": "ES6",
+ "module": "CommonJS",
+ "moduleResolution": "node",
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "declaration": true,
+ "outDir": "dist",
12
+ "rootDir": "src",
13
+ "baseUrl": "src"
14
},
- "include": [
- "src/**/*"
15
- ],
16
- "exclude": [
17
- "node_modules",
18
- "dist"
19
- ]
20
-}
+ "include": ["src"],
+ "exclude": []
+}
0 commit comments