-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (28 loc) · 741 Bytes
/
tsconfig.json
File metadata and controls
29 lines (28 loc) · 741 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
{
"compilerOptions": {
"lib": ["ESNext", "dom", "ES2022"],
"outDir": "lib",
"removeComments": true,
"target": "ES6",
"declaration": true,
"module": "ES2022",
"rootDir": "./",
"esModuleInterop": true,
"moduleResolution": "node",
"sourceMap": true,
"sourceRoot": "/",
"alwaysStrict": true,
"allowUnreachableCode": false,
"noImplicitAny": true,
"strict": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"jsx": "react"
},
"types": ["node", "jest", "@testing-library/jest-dom"],
"include": ["./src/**/*"],
"exclude": ["node_modules/**/*", "lib/**/*"]
}