build: run offline_compiler_test using bazel (#28191)

PR Close #28191
This commit is contained in:
Paul Gschwendtner
2019-01-22 18:46:51 +01:00
committed by Jason Aden
parent c84739dc55
commit 40d64b6b58
24 changed files with 346 additions and 248 deletions

View File

@ -1,26 +1,21 @@
{
"angularCompilerOptions": {
// For TypeScript 1.8, we have to lay out generated files
// in the same source directory with your code.
"genDir": "ng",
"flatModuleId": "flat_module",
"flatModuleOutFile": "index.js",
"skipTemplateCodegen": true
},
"compilerOptions": {
"target": "es5",
"experimentalDecorators": true,
"noImplicitAny": true,
"moduleResolution": "node",
"rootDir": "",
"declaration": true,
"lib": ["es6", "dom"],
"baseUrl": ".",
"declaration": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "../node_modules/flat_module",
// Prevent scanning up the directory tree for types
"typeRoots": ["node_modules/@types"]
"rootDir": "",
"target": "es5"
},
"files": ["public-api.ts"]
}
}