Skip to content
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.

Commit

Permalink
feat(praparat): add ability to pan and zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
itigoore01 committed Oct 2, 2019
1 parent 91a0237 commit a7384e0
Show file tree
Hide file tree
Showing 47 changed files with 6,842 additions and 97 deletions.
162 changes: 160 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,169 @@
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {},
"projects": {
"praparat": {
"projectType": "library",
"root": "projects/praparat",
"sourceRoot": "projects/praparat/src",
"prefix": "",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/praparat/tsconfig.lib.json",
"project": "projects/praparat/ng-package.json"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/praparat/src/test.ts",
"tsConfig": "projects/praparat/tsconfig.spec.json",
"karmaConfig": "projects/praparat/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/praparat/tsconfig.lib.json",
"projects/praparat/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
"demo-app": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "projects/demo-app",
"sourceRoot": "projects/demo-app/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/demo-app",
"index": "projects/demo-app/src/index.html",
"main": "projects/demo-app/src/main.ts",
"polyfills": "projects/demo-app/src/polyfills.ts",
"tsConfig": "projects/demo-app/tsconfig.app.json",
"aot": false,
"assets": [
"projects/demo-app/src/favicon.ico",
"projects/demo-app/src/assets"
],
"styles": [
"projects/demo-app/src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "projects/demo-app/src/environments/environment.ts",
"with": "projects/demo-app/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "demo-app:build"
},
"configurations": {
"production": {
"browserTarget": "demo-app:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "demo-app:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/demo-app/src/test.ts",
"polyfills": "projects/demo-app/src/polyfills.ts",
"tsConfig": "projects/demo-app/tsconfig.spec.json",
"karmaConfig": "projects/demo-app/karma.conf.js",
"assets": [
"projects/demo-app/src/favicon.ico",
"projects/demo-app/src/assets"
],
"styles": [
"projects/demo-app/src/styles.scss"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/demo-app/tsconfig.app.json",
"projects/demo-app/tsconfig.spec.json",
"projects/demo-app/e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "projects/demo-app/e2e/protractor.conf.js",
"devServerTarget": "demo-app:serve"
},
"configurations": {
"production": {
"devServerTarget": "demo-app:serve:production"
}
}
}
}
}},
"schematics": {
"@schematics/angular:component": {
"changeDetection": "OnPush",
"style": "scss"
}
}
},
"defaultProject": "praparat"
}
Loading

0 comments on commit a7384e0

Please sign in to comment.