Skip to content

Commit

Permalink
🎨 format
Browse files Browse the repository at this point in the history
  • Loading branch information
steffinchen committed Aug 9, 2023
1 parent d4cc52a commit 26368a2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 42 deletions.
32 changes: 7 additions & 25 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"analytics": "a3fcfd43-a294-4b2d-ae71-a7a806f66438",
"schematicCollections": [
"@ngrx/schematics"
]
"schematicCollections": ["@ngrx/schematics"]
},
"version": 1,
"newProjectRoot": "projects",
Expand Down Expand Up @@ -55,30 +53,17 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"localize": [
"en-CH"
],
"localize": ["en-CH"],
"outputPath": "dist/cloud-portal",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": [
"src/structuredClone.polyfill.ts",
"zone.js"
],
"polyfills": ["src/structuredClone.polyfill.ts", "zone.js"],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/manifest.webmanifest",
"src/config.json",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"assets": ["src/manifest.webmanifest", "src/config.json", "src/assets"],
"styles": ["src/styles.scss"],
"scripts": [],
"allowedCommonJsDependencies": [
"fast-sha256"
]
"allowedCommonJsDependencies": ["fast-sha256"]
},
"configurations": {
"production": {
Expand Down Expand Up @@ -158,10 +143,7 @@
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
},
"cypress-run": {
Expand Down
13 changes: 3 additions & 10 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,8 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": [
"@angular/localize"
]
"types": ["@angular/localize"]
},
"files": [
"src/main.ts",
"src/structuredClone.polyfill.ts"
],
"include": [
"src/**/*.d.ts"
]
"files": ["src/main.ts", "src/structuredClone.polyfill.ts"],
"include": ["src/**/*.d.ts"]
}
9 changes: 2 additions & 7 deletions tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,8 @@
"compilerOptions": {
"esModuleInterop": true,
"outDir": "./out-tsc/spec",
"types": [
"jest"
]
"types": ["jest"]
},
"files": [],
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"]
}

0 comments on commit 26368a2

Please sign in to comment.