This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
tsconfig.json
67 lines (67 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "build",
"outDir": "build",
"rootDir": "src",
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react",
"esModuleInterop": true,
"lib": [
"es2015",
"es2016",
"es2017",
"es2018",
"es2019",
"es2020",
"esnext",
"dom"
],
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": false,
"suppressImplicitAnyIndexErrors": true,
"target": "es5",
"importHelpers": true,
"types": [
"node",
"react-dom",
"react",
"styled-components",
"jest"
],
},
"plugins": [
{
"name": "typescript-styled-plugin",
"validate": false
}
],
"include": [
"src/**/*",
"@types/styled-components/cssprop"
],
"exclude": [
".storybook",
"build-styleguide",
"build",
"node_modules",
"node_modules/framer-motion",
"src/**/*.types.ts",
"src/**/*.story.tsx",
"src/**/*.x-story.tsx",
"src/**/*.test.ts",
"src/_docs",
"src/_labs",
"src/_tests",
"src/_process",
"src/storybook",
]
}