Skip to content

Commit 2f5c7c5

Browse files
committed
Update tsconfig file
1 parent b25fafc commit 2f5c7c5

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

tsconfig.json

+16-18
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
{
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-
]
2+
"compilerOptions": {
3+
"allowSyntheticDefaultImports": true,
4+
"lib": ["ES2020"],
5+
"module": "commonjs",
6+
"moduleResolution": "node",
7+
"target": "ES2020",
8+
"outDir": "./dist",
9+
"strict": true,
10+
"skipLibCheck": true,
11+
"forceConsistentCasingInFileNames": true
12+
},
13+
"include": ["src"],
14+
"exclude": ["*.test.ts"],
15+
"ts-node": {
16+
"files": true
17+
}
2018
}

0 commit comments

Comments
 (0)