-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
48 lines (46 loc) · 1.09 KB
/
tsconfig.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"*": [
"*",
]
},
"allowJs": true,
"target": "ES2023",
"module": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["@testing-library/jest-dom"],
"skipLibCheck": true,
"sourceMap": true,
"outDir": "dist",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"downlevelIteration": true,
/* Bundler mode */
"moduleResolution": "bundler",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"moduleDetection": "force",
"noEmit": false,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
},
"include": ["src", "*.tsx", "*.ts", "eslint.config.js"],
"exclude": [
"coverage",
"config",
"dist",
"node_modules/**"
]
}