We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b25fafc commit 2f5c7c5Copy full SHA for 2f5c7c5
tsconfig.json
@@ -1,20 +1,18 @@
1
{
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "esModuleInterop": true,
5
- "target": "es6",
6
- "noImplicitAny": true,
7
- "moduleResolution": "node",
8
- "sourceMap": true,
9
- "outDir": "dist",
10
- "baseUrl": ".",
11
- "paths": {
12
- "*": [
13
- "node_modules/*"
14
- ]
15
- }
16
- },
17
- "include": [
18
- "src/**/*"
19
+ "compilerOptions": {
+ "allowSyntheticDefaultImports": true,
+ "lib": ["ES2020"],
+ "module": "commonjs",
+ "moduleResolution": "node",
+ "target": "ES2020",
+ "outDir": "./dist",
+ "strict": true,
+ "skipLibCheck": true,
+ "forceConsistentCasingInFileNames": true
+ },
+ "include": ["src"],
+ "exclude": ["*.test.ts"],
+ "ts-node": {
+ "files": true
+ }
20
}
0 commit comments