-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 882 Bytes
/
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
{
"compilerOptions": {
"rootDir": "src",
"declaration": true,
"importHelpers": false,
"declarationDir": "dist",
"forceConsistentCasingInFileNames": true,
"module": "ES6",
"target": "ESNext",
"lib": ["es5", "es6", "dom", "DOM.Iterable", "es2016", "es2017", "ESNext"],
"sourceMap": true,
"skipLibCheck": true,
"jsx": "react",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"pretty": true,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"declarationMap": true,
"types": [
"@types/node", "jest", "@types/testing-library__jest-dom"
]
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": [
"node_modules",
"build",
"storybook-static",
"src/**/*.stories.tsx"
]
}