-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (35 loc) · 1021 Bytes
/
tsconfig.json
File metadata and controls
41 lines (35 loc) · 1021 Bytes
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
// TODO: remove comments lines piece by piece to avoid breaking the code
{
"compilerOptions": {
/* Output Configuration */
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"sourceMap": true,
"declaration": true,
/* Type Checking */
// "strict": true,
"noImplicitAny": true,
// "strictNullChecks": true,
// "noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// "noImplicitReturns": true,
/* Module Resolution */
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
/* Advanced */
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
/* React Specific */
"jsx": "react-jsx",
"lib": ["dom", "esnext"],
/* Types */
"types": ["vitest/globals", "@testing-library/jest-dom"],
/* Plugins */
"plugins": [{ "name": "typescript-plugin-css-modules" }]
},
"exclude": ["node_modules"]
}