|
@@ -1,28 +1,28 @@
|
1
|
1
|
{
|
2
|
2
|
"compilerOptions": {
|
|
3
|
+ "strictNullChecks": false,
|
|
4
|
+ "alwaysStrict": true,
|
|
5
|
+ "allowSyntheticDefaultImports": true,
|
3
|
6
|
"declaration": true,
|
4
|
|
- "declarationDir": "lib",
|
|
7
|
+ "declarationDir": "lib",
|
|
8
|
+ "emitDecoratorMetadata": false,
|
5
|
9
|
"esModuleInterop": true,
|
6
|
|
- "isolatedModules": false,
|
7
|
|
- "outDir": "./lib",
|
8
|
|
- "moduleResolution": "node",
|
9
|
|
- "module": "esnext",
|
10
|
|
- "experimentalDecorators": true,
|
11
|
|
- "allowSyntheticDefaultImports": true,
|
12
|
|
- "lib": ["es6"],
|
13
|
|
- "sourceMap": true,
|
14
|
|
- "removeComments": true,
|
|
10
|
+ "outDir": "lib",
|
15
|
11
|
"jsx": "react-native",
|
16
|
|
- "strict": true,
|
|
12
|
+ "lib": ["es6"],
|
|
13
|
+ "module": "esnext",
|
|
14
|
+ "moduleResolution": "node",
|
|
15
|
+ "noFallthroughCasesInSwitch": true,
|
17
|
16
|
"noImplicitAny": true,
|
18
|
|
- "strictNullChecks": false,
|
19
|
|
- "strictFunctionTypes": true,
|
|
17
|
+ "noImplicitReturns": true,
|
20
|
18
|
"noImplicitThis": true,
|
21
|
|
- "alwaysStrict": true,
|
22
|
19
|
"noUnusedLocals": true,
|
23
|
|
- "noImplicitReturns": true,
|
24
|
|
- "noFallthroughCasesInSwitch": true,
|
25
|
|
- "resolveJsonModule": true,
|
26
|
|
- "target": "esnext"
|
|
20
|
+ "noUnusedParameters": true,
|
|
21
|
+ "pretty": true,
|
|
22
|
+ "removeComments": true,
|
|
23
|
+ "sourceMap": true,
|
|
24
|
+ "strict": true,
|
|
25
|
+ "stripInternal": true,
|
|
26
|
+ "target": "es5"
|
27
|
27
|
}
|
28
|
|
-}
|
|
28
|
+}
|