-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathtsconfig.json
42 lines (42 loc) · 968 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
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react",
"module": "ES2020",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./dist/es",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2020",
"plugins": [
{
"name": "typescript-styled-plugin",
"lint": {
"validProperties": ["label"]
}
}
]
},
"include": ["**/*"],
"exclude": [
"node_modules",
"public/**/*",
"**/dist/**/*",
"**/template/**/*",
"**/__tests__/**/*",
"**/__testfixtures__/**/*",
"**/*.spec.*",
"**/*.stories.*"
],
"typeRoots": ["./node_modules/@types"]
}