-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 763 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 763 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
{
"compilerOptions": {
"target": "es2017",
"module": "esnext",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": false,
"removeComments": true,
"jsx": "react",
"moduleResolution": "bundler",
// @types/jest 30 delegates to expect/pretty-format, which defeats TS's
// automatic @types discovery (esp. under pnpm isolation), so the Jest
// globals must be requested explicitly. React types come in via imports.
"types": ["jest"],
"resolveJsonModule": true,
"rootDir": "./src",
"outDir": "./dist",
"declaration": true,
"noUnusedLocals": true
},
"include": ["./src/**/*.tsx", "./src/**/*.ts"],
"exclude": ["dist", "examples"]
}