-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 740 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 740 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
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "es2015", "es2017.object"],
"module": "ESNext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"emitDeclarationOnly": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./",
"paths": {
"~/*": ["src/*"],
"test-utils": ["test-utils/index"]
},
"types": ["jest", "@testing-library/jest-dom"]
},
"include": ["src/**/*", "test-utils/**/*"],
"exclude": ["node_modules", "dist", "build", "docs"]
}