-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtsconfig.json
33 lines (33 loc) · 906 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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es2017",
"moduleResolution": "node",
"inlineSourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": true,
"noImplicitThis": true,
"alwaysStrict": false,
"noImplicitUseStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"traceResolution": false,
"listEmittedFiles": false,
"listFiles": false,
"pretty": true,
"lib": ["es2017", "dom"],
"types": ["node", "jest"],
"module": "esnext",
"outDir": "dist",
"declaration": true
},
"include": ["src/**/*"],
"exclude": ["node_modules/**", "src/**/*.test.ts", "src/**/*.stories.tsx"]
}