-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
47 lines (44 loc) · 1.1 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"noEmitOnError": true,
"declaration": true,
"declarationDir": "./dist",
"baseUrl": "./src",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"downlevelIteration": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": false,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"suppressImplicitAnyIndexErrors": true,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"typeRoots": ["node_modules/@types", "types"],
"plugins": [
{
"name": "typescript-styled-plugin"
}
]
},
"include": ["src/**/*", "types/**/*"],
"exclude": [
"src/private",
".storybook",
"src/**/*.test.tsx",
"src/**/*.test.ts",
"src/**/*.stories.tsx",
"dist",
"node_modules"
]
}