-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
executable file
·44 lines (44 loc) · 1017 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
43
44
/** https://github.com/piotrwitek/react-redux-typescript-guide#baseline-tsconfigjson */
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"checkJs": false,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"jsx": "react",
"lib": [
"dom",
"es2017"
],
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noEmitHelpers": true,
"noImplicitReturns": true,
"outDir": "lib/",
"pretty": true,
"removeComments": true,
"sourceMap": true,
"strict": true,
"types": [
"node",
"jest",
"@testing-library/jest-dom"
],
"target": "es5"
},
"include": [
"components/"
],
"exclude": [
"components/**/*.test.ts",
"components/**/*.test.tsx"
]
}