forked from Sunbird-Ed/sunbird-ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #SB-13915 task: Fork and cleanup code
- Loading branch information
Lakhan Mandloi
committed
Aug 8, 2019
1 parent
a345d4e
commit 8fc622b
Showing
653 changed files
with
56,730 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
insert_final_newline = false | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
{ | ||
"$schema": "./node_modules/@angular-devkit/core/src/workspace/workspace-schema.json", | ||
"version": 1, | ||
"newProjectRoot": "", | ||
"projects": { | ||
"sunbird-ui-components": { | ||
"root": "", | ||
"sourceRoot": "src", | ||
"projectType": "library", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-ng-packagr:build", | ||
"options": { | ||
"project": "src/ng-package.json" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"tsConfig": "src/tsconfig.json", | ||
"project": "src/ng-package.prod.json" | ||
} | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "src/test.ts", | ||
"tsConfig": "src/tsconfig.spec.json", | ||
"codeCoverageExclude": [ | ||
"src/test.ts", | ||
"src/test/**" | ||
], | ||
"karmaConfig": "src/karma.conf.js" | ||
}, | ||
"configurations": { | ||
"ie": { | ||
"tsConfig": "src/tsconfig-ie.spec.json" | ||
} | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"src/tsconfig.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"demo": { | ||
"root": "demo", | ||
"sourceRoot": "demo/src", | ||
"projectType": "application", | ||
"prefix": "sb", | ||
"schematics": {}, | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "demo/dist", | ||
"index": "demo/src/public/index.html", | ||
"main": "demo/src/main.ts", | ||
"polyfills": "demo/src/polyfills.ts", | ||
"tsConfig": "demo/tsconfig.json", | ||
"assets": [ | ||
{ | ||
"glob": "favicon.ico", | ||
"input": "src", | ||
"output": "/" | ||
}, | ||
{ | ||
"glob": "**/*", | ||
"input": "demo/src/public", | ||
"output": "/" | ||
} | ||
], | ||
"styles": [ | ||
"node_modules/bootstrap/dist/css/bootstrap.css", | ||
"node_modules/prismjs/themes/prism.css", | ||
"demo/src/style/app.scss", | ||
"demo/src/style/demos.css" | ||
], | ||
"scripts": [] | ||
}, | ||
"configurations": { | ||
"production": { | ||
"fileReplacements": [ | ||
{ | ||
"src": "demo/src/environments/environment.ts", | ||
"replaceWith": "demo/src/environments/environment.prod.ts" | ||
} | ||
], | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"extractCss": true, | ||
"namedChunks": false, | ||
"aot": true, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true | ||
} | ||
} | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "demo:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "demo:build:production" | ||
} | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"demo/tsconfig.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**", | ||
"**/api-docs.ts" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
}, | ||
"cli": { | ||
"packageManager": "yarn" | ||
} | ||
} |
Oops, something went wrong.