forked from KnisterPeter/react-to-typescript-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 658 Bytes
/
tsconfig.json
File metadata and controls
23 lines (23 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"alwaysStrict": true,
"declaration": true,
"lib": ["dom", "es5", "es2015.core", "es2015.iterable", "es2015.promise"],
"listFiles": false,
"module": "commonjs",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"pretty": true,
"strictNullChecks": true,
"stripInternal": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es5",
"esModuleInterop": true
},
"exclude": ["index.d.ts", "dist", "node_modules", "tests/*.d.ts"]
}