- Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
Latest commit
24 lines (24 loc) · 648 Bytes
/
Copy pathtsconfig.json
File metadata and controls
24 lines (24 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"outDir": "./dist",
"module": "commonjs",
"target": "es5",
"declaration": true,
"lib": ["dom", "es2016", "es2017.object"],
"jsx": "react",
"moduleResolution": "node",
"rootDirs": ["src", "stories"],
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"pretty": true,
"noUnusedParameters": true
},
"include": ["src/**/*"],
"exclude": ["**/*.test.tsx"]
}