-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
30 lines (30 loc) · 984 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
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "es2015", "es2017.object", "es2016.array.include"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"module": "es2015",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react",
"outDir": "./compiled.tsc/",
"rootDir": "./src/",
"importHelpers": true,
"downlevelIteration": true,
"typeRoots": ["node_modules/@types", "custom_typings"]
},
"include": ["src"]
}