parent
0dda01e37c
commit
b800a0c824
|
@ -7,7 +7,8 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "es2015",
|
"module": "es2015",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"strictNullChecks": true,
|
// TODO(i): strictNullChecks should turned on but are temporarily disabled due to #15432
|
||||||
|
"strictNullChecks": false,
|
||||||
"target": "es6",
|
"target": "es6",
|
||||||
"noImplicitAny": false,
|
"noImplicitAny": false,
|
||||||
"sourceMap": false,
|
"sourceMap": false,
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
"lib": ["es5", "dom", "es2015.collection", "es2015.iterable", "es2015.promise"],
|
"lib": ["es5", "dom", "es2015.collection", "es2015.iterable", "es2015.promise"],
|
||||||
"types": [],
|
"types": [],
|
||||||
"strictNullChecks": true
|
// TODO(i): strictNullChecks should turned on but are temporarily disabled due to #15432
|
||||||
|
"strictNullChecks": false
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"include-all.ts",
|
"include-all.ts",
|
||||||
|
|
|
@ -15,7 +15,8 @@
|
||||||
"es2015.promise"
|
"es2015.promise"
|
||||||
],
|
],
|
||||||
"types": [],
|
"types": [],
|
||||||
"strictNullChecks": true
|
// TODO(i): strictNullChecks should turned on but are temporarily disabled due to #15432
|
||||||
|
"strictNullChecks": false
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"include-all.ts",
|
"include-all.ts",
|
||||||
|
|
|
@ -14,3 +14,9 @@
|
||||||
export * from './src/core';
|
export * from './src/core';
|
||||||
|
|
||||||
// This file only reexports content of the `src` folder. Keep it that way.
|
// This file only reexports content of the `src` folder. Keep it that way.
|
||||||
|
|
||||||
|
// This is a hack to prevent people from turning on strictNullChecks. See #15432
|
||||||
|
export declare interface ɵStrictNullChecksNotSupported {
|
||||||
|
dontUseStrictNullChecksWithAngularYetSeeIssue15432: string|null;
|
||||||
|
[key: string]: string;
|
||||||
|
}
|
||||||
|
|
|
@ -7,7 +7,8 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "es2015",
|
"module": "es2015",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"strictNullChecks": true,
|
// TODO(i): strictNullChecks should turned on but are temporarily disabled due to #15432
|
||||||
|
"strictNullChecks": false,
|
||||||
"target": "es6",
|
"target": "es6",
|
||||||
"noImplicitAny": false,
|
"noImplicitAny": false,
|
||||||
"sourceMap": false,
|
"sourceMap": false,
|
||||||
|
|
Loading…
Reference in New Issue