We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cfca5d commit 8df1a30Copy full SHA for 8df1a30
tsconfig.json
@@ -1,12 +1,15 @@
1
{
2
"compilerOptions": {
3
- "target": "ES6",
4
- "module": "CommonJS",
5
"strict": true,
6
- "outDir": "./dist",
7
- "rootDir": "./src",
+ "target": "ES2022",
+ "module": "ES2022",
+ "skipLibCheck": true,
8
"esModuleInterop": true,
9
- "moduleResolution": "node"
+ "resolveJsonModule": true,
+ "moduleResolution": "node",
10
+ "verbatimModuleSyntax": true,
11
+ "allowImportingTsExtensions": false,
12
+ "forceConsistentCasingInFileNames": true
13
},
14
"include": ["src/**/*"],
15
"exclude": ["node_modules", "dist"]
0 commit comments