add angular example

This commit is contained in:
Rene Haas
2022-10-19 14:56:10 +02:00
parent d3c1abe7ab
commit 074e367341
26 changed files with 19454 additions and 8 deletions
@@ -29,6 +29,7 @@ yarn-error.log
.history/*
# Miscellaneous
/.angular
/.angular/cache
.sass-cache/
/connect.lock
+1 -1
View File
@@ -1,5 +1,5 @@
{
"$schema": "../../node_modules/@angular/cli/lib/config/schema.json",
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": ".",
"projects": {
@@ -1,5 +1,5 @@
{
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"dest": "./dist",
"lib": {
"entryFile": "src/public-api.ts"
+2 -2
View File
@@ -9,8 +9,8 @@
"test": "ng test"
},
"peerDependencies": {
"@angular/common": "^10.0.0",
"@angular/core": "^10.0.0"
"@angular/common": ">=10.0.0",
"@angular/core": ">=10.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1002.4",
@@ -8,5 +8,5 @@
"inlineSources": true,
"types": []
},
"include": ["./src/**/*"]
"exclude": ["test/test.ts", "**/*.spec.ts"]
}