5ce71e0fbc
Adds a migration that finds all imports and calls to the deprecated `async` function from `@angular/core/testing` and replaces them with `waitForAsync`. These changes also move a bit of code out of the `Renderer2` migration so that it can be reused. PR Close #39212
21 lines
525 B
JSON
21 lines
525 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"lib": ["es2015"],
|
|
"types": ["jasmine"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@angular/core": ["../"],
|
|
"@angular/compiler": ["../../compiler"],
|
|
"@angular/compiler/*": ["../../compiler/*"],
|
|
"@angular/compiler-cli": ["../../compiler-cli"],
|
|
"@angular/compiler-cli/*": ["../../compiler-cli/*"]
|
|
}
|
|
},
|
|
"bazelOptions": {
|
|
"suppressTsconfigOverrideWarnings": true
|
|
}
|
|
}
|