-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 666 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 666 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
25
26
{
"version": "2.0.0",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react",
"target": "es2015",
"sourceMap": true,
"declaration": true,
"module": "es2015",
"removeComments": true,
"outDir": "lib/",
"moduleResolution": "node",
"experimentalDecorators": false,
"strict": true,
"strictPropertyInitialization": false,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"importHelpers": true,
"stripInternal": true,
"lib": ["es2015", "dom"]
},
"exclude": ["__tests__/**/*"],
"include": ["src/**/*"],
"files": ["src/index.ts"]
}