Skip to content

chore: exclude node types for aot demo-app #2708

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion src/demo-app/system-config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** Type declaration for ambient System. */
declare var System: any;
declare const System: any;

// Apply the CLI SystemJS configuration.
System.config({
Expand Down
3 changes: 2 additions & 1 deletion src/demo-app/tsconfig-aot.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"target": "es5",
"baseUrl": "",
"typeRoots": [
"../node_modules/@types"
"../node_modules/@types/!(node)"
],
"paths": {
"@angular/material": [
Expand All @@ -20,6 +20,7 @@
}
},
"files": [
"./demo-app-types.d.ts",
"./demo-app-module.ts",
"./main-aot.ts"
],
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/e2e-app/radio/radio-e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ import {Component} from '@angular/core';
})
export class SimpleRadioButtons {
isGroupDisabled: boolean = false;
groupValue: string;
}
2 changes: 1 addition & 1 deletion src/e2e-app/system-config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** Type declaration for ambient System. */
declare var System: any;
declare const System: any;

// Apply the CLI SystemJS configuration.
System.config({
Expand Down
2 changes: 1 addition & 1 deletion src/lib/system-config-spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** Type declaration for ambient System. */
declare var System: any;
declare const System: any;

// Apply the CLI SystemJS configuration.
System.config({
Expand Down