-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 1.41 KB
/
Copy pathtsconfig.json
File metadata and controls
32 lines (32 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"compilerOptions": {
"target": "ES2022", // JavaScript language version
"module": "CommonJS", // Specify what module code is generated.
"outDir": "out", // Specify an output folder for all emitted files.
"strict": true, // Enable all strict type checking options.
"sourceMap": true, // Create source map files for emitted JavaScript files.
"declaration": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"lib": [
"ES2023" /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
"DOM"
],
"jsx": "react",
/* Additional Checks */
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
"noUnusedParameters": true /* Report errors on unused parameters. */,
"resolveJsonModule": true /* Enables importing json files. */,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true
},
"include": [
"src",
"__mocks__" /* Make eslint happy */,
"test-workspace" /* Make eslint happy */,
"playwright.config.ts" /* Make eslint happy */,
"jest-setup-file.ts" /* Make eslint happy */
]
}