We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc34ed4 commit 8b6a4d2Copy full SHA for 8b6a4d2
1 file changed
tsconfig.json
@@ -1,9 +1,20 @@
1
{
2
- "extends": "../../tsconfig.base.json",
3
"compilerOptions": {
4
- "rootDir": "src",
+ "target": "ES2022",
+ "module": "NodeNext",
5
+ "moduleResolution": "NodeNext",
6
+ "lib": ["ES2022", "DOM"],
7
+ "strict": true,
8
+ "noUncheckedIndexedAccess": true,
9
+ "noImplicitReturns": true,
10
+ "noFallthroughCasesInSwitch": true,
11
+ "esModuleInterop": true,
12
+ "skipLibCheck": true,
13
+ "declaration": true,
14
+ "declarationMap": true,
15
+ "sourceMap": true,
16
"outDir": "dist",
- "lib": ["ES2022", "DOM"]
17
+ "rootDir": "src"
18
},
19
"include": ["src/**/*"],
20
"exclude": ["node_modules", "dist", "tests"]
0 commit comments