Skip to content

Commit

Permalink
Intial commit for quml player source code
Browse files Browse the repository at this point in the history
  • Loading branch information
Diptesh6501 committed Nov 2, 2020
1 parent e548c77 commit 226674e
Show file tree
Hide file tree
Showing 164 changed files with 29,742 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
dist/
43 changes: 43 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"quml-library": {
"root": "projects/quml-library",
"sourceRoot": "projects/quml-library/src",
"projectType": "library",
"prefix": "quml",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/quml-library/tsconfig.lib.json",
"project": "projects/quml-library/ng-package.json"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/quml-library/src/test.ts",
"tsConfig": "projects/quml-library/tsconfig.spec.json",
"karmaConfig": "projects/quml-library/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/quml-library/tsconfig.lib.json",
"projects/quml-library/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "quml-library"
}
Loading

0 comments on commit 226674e

Please sign in to comment.