forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(compiler-cli): prevent ng-xi18n from emitting the compilation out…
…put (angular#14115) fixes angular#13567 PR Close angular#14115
- Loading branch information
Showing
4 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
modules/@angular/compiler-cli/integrationtest/tsconfig-xi18n.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"angularCompilerOptions": { | ||
// For TypeScript 1.8, we have to lay out generated files | ||
// in the same source directory with your code. | ||
"genDir": ".", | ||
"debug": true | ||
}, | ||
|
||
"compilerOptions": { | ||
"target": "es5", | ||
"experimentalDecorators": true, | ||
"noImplicitAny": true, | ||
"moduleResolution": "node", | ||
"outDir": "./out", | ||
"rootDir": "", | ||
"declaration": true, | ||
"lib": ["es6", "dom"], | ||
"baseUrl": ".", | ||
// Prevent scanning up the directory tree for types | ||
"typeRoots": ["node_modules/@types"] | ||
}, | ||
|
||
"files": [ | ||
"src/module", | ||
"src/bootstrap", | ||
"test/all_spec", | ||
"test/test_ngtools_api", | ||
"test/test_summaries", | ||
"benchmarks/src/tree/ng2/index_aot.ts", | ||
"benchmarks/src/tree/ng2_switch/index_aot.ts", | ||
"benchmarks/src/largetable/ng2/index_aot.ts", | ||
"benchmarks/src/largetable/ng2_switch/index_aot.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters