Skip to content

Commit 58022ec

Browse files
committed
Add weather demo
1 parent 42fa823 commit 58022ec

28 files changed

+427
-89
lines changed

angular.json

+34-3
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,40 @@
137137
"projects/angular-nodegui/tsconfig.lib.json",
138138
"projects/angular-nodegui/tsconfig.spec.json"
139139
],
140-
"exclude": [
141-
"**/node_modules/**"
142-
]
140+
"exclude": ["**/node_modules/**"]
141+
}
142+
}
143+
}
144+
},
145+
"weather-demo": {
146+
"projectType": "application",
147+
"root": "projects/weather-demo",
148+
"sourceRoot": "projects/weather-demo/src",
149+
"prefix": "app",
150+
"architect": {
151+
"build": {
152+
"builder": "@angular-devkit/build-ng-packagr:build",
153+
"options": {
154+
"tsConfig": "projects/weather-demo/tsconfig.lib.json",
155+
"project": "projects/weather-demo/ng-package.json"
156+
}
157+
},
158+
"test": {
159+
"builder": "@angular-devkit/build-angular:karma",
160+
"options": {
161+
"main": "projects/weather-demo/src/test.ts",
162+
"tsConfig": "projects/weather-demo/tsconfig.spec.json",
163+
"karmaConfig": "projects/weather-demo/karma.conf.js"
164+
}
165+
},
166+
"lint": {
167+
"builder": "@angular-devkit/build-angular:tslint",
168+
"options": {
169+
"tsConfig": [
170+
"projects/weather-demo/tsconfig.lib.json",
171+
"projects/weather-demo/tsconfig.spec.json"
172+
],
173+
"exclude": ["**/node_modules/**"]
143174
}
144175
}
145176
}

0 commit comments

Comments
 (0)