We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9273f8 commit a00a49aCopy full SHA for a00a49a
packages/angular_devkit/build_angular/src/builders/web-test-runner/index.ts
@@ -100,7 +100,7 @@ async function buildTests(
100
entryPoints,
101
tsConfig: options.tsConfig,
102
outputPath,
103
- aot: false,
+ aot: options.aot,
104
index: false,
105
outputHashing: OutputHashing.None,
106
optimization: false,
packages/angular_devkit/build_angular/src/builders/web-test-runner/schema.json
@@ -249,6 +249,11 @@
249
"webWorkerTsConfig": {
250
"type": "string",
251
"description": "TypeScript configuration for Web Worker modules."
252
+ },
253
+ "aot": {
254
+ "type": "boolean",
255
+ "description": "Run tests using Ahead of Time compilation.",
256
+ "default": false
257
}
258
},
259
"additionalProperties": false,
0 commit comments