Skip to content

Commit 8df1a30

Browse files
author
Bruno Rocha
committed
Add new config in tsconfig
1 parent 4cfca5d commit 8df1a30

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

tsconfig.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"compilerOptions": {
3-
"target": "ES6",
4-
"module": "CommonJS",
53
"strict": true,
6-
"outDir": "./dist",
7-
"rootDir": "./src",
4+
"target": "ES2022",
5+
"module": "ES2022",
6+
"skipLibCheck": true,
87
"esModuleInterop": true,
9-
"moduleResolution": "node"
8+
"resolveJsonModule": true,
9+
"moduleResolution": "node",
10+
"verbatimModuleSyntax": true,
11+
"allowImportingTsExtensions": false,
12+
"forceConsistentCasingInFileNames": true
1013
},
1114
"include": ["src/**/*"],
1215
"exclude": ["node_modules", "dist"]

0 commit comments

Comments
 (0)