Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed Aug 5, 2023
1 parent c6789e6 commit 67dd51d
Show file tree
Hide file tree
Showing 37 changed files with 16,554 additions and 3,781 deletions.
35 changes: 17 additions & 18 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
"version": "0.2.0",
"configurations": [
{
"name": "Launch app",
"type": "firefox",
"request": "launch",
"reAttach": true,
"url": "http://localhost:4200/",
"pathMappings": [
{
"url": "webpack:///projects/family-idx/src/",
"path": "${workspaceFolder}/projects/family-idx/src/"
}
],
"firefoxExecutable": "stable"
}
]
}
101 changes: 101 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,106 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ckangpt": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "less",
"skipTests": true
}
},
"root": "projects/ckangpt",
"sourceRoot": "projects/ckangpt/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/ckangpt",
"index": "projects/ckangpt/src/index.html",
"main": "projects/ckangpt/src/main.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "projects/ckangpt/tsconfig.app.json",
"inlineStyleLanguage": "less",
"assets": [
"projects/ckangpt/src/favicon.ico",
"projects/ckangpt/src/assets"
],
"styles": [
"projects/ckangpt/src/styles.less"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "ckangpt:build:production"
},
"development": {
"browserTarget": "ckangpt:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ckangpt:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "projects/ckangpt/tsconfig.spec.json",
"inlineStyleLanguage": "less",
"assets": [
"projects/ckangpt/src/favicon.ico",
"projects/ckangpt/src/assets"
],
"styles": [
"projects/ckangpt/src/styles.less"
],
"scripts": []
}
}
}
}
},
"cli": {
"analytics": false
}
}
Loading

0 comments on commit 67dd51d

Please sign in to comment.