-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (44 loc) · 1.02 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
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"allowJs": true,
"strict": true,
"target": "es5",
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["es2015", "es2017.object", "dom"],
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"*": [
"types/*"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"server/**/*.ts",
"stories/**/*.ts",
"stories/**/*.tsx",
"storybook/addons.js",
"tests/firstTest.js",
"tests/navBar.test.ts",
"tests/createPollForm.test.ts",
"secret/github.ts",
"webpack.config.prod.js",
"deployment.config.js",
"webpack.config.prod.js"
],
"exclude": ["tsDist", "src/coverage", "webpack.config.js"]
}