Skip to content
Snippets Groups Projects
Commit 8274b07a authored by Konstantin Schulz's avatar Konstantin Schulz
Browse files

clean repo for angular update

parent 3aed1017
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -18,15 +18,15 @@
"private": true,
"dependencies": {
"@angular-builders/custom-webpack": "^9.0.0",
"@angular/animations": "^9.0.4",
"@angular/animations": "^10.2.5",
"@angular/cdk": "^9.2.0",
"@angular/common": "^9.0.4",
"@angular/core": "^9.0.4",
"@angular/forms": "^9.0.4",
"@angular/common": "^10.2.5",
"@angular/core": "^10.2.5",
"@angular/forms": "^10.2.5",
"@angular/material": "^9.2.0",
"@angular/platform-browser": "^9.0.4",
"@angular/platform-browser-dynamic": "^9.0.4",
"@angular/router": "^9.0.4",
"@angular/platform-browser": "^10.2.5",
"@angular/platform-browser-dynamic": "^10.2.5",
"@angular/router": "^10.2.5",
"@ionic-native/core": "^5.21.6",
"@ionic-native/splash-screen": "^5.21.6",
"@ionic-native/status-bar": "^5.21.6",
......@@ -48,36 +48,36 @@
"jszip": "^3.5.0",
"rxjs": "^6.5.4",
"toposort-class": "^1.0.1",
"tslib": "^1.11.1",
"tslib": "^2.0.0",
"webpack": "^4.42.0",
"zone.js": "^0.10.2"
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/architect": "^0.900.4",
"@angular-devkit/build-angular": "^0.901.15",
"@angular-devkit/core": "^9.0.4",
"@angular-devkit/schematics": "^9.0.4",
"@angular/cli": "^9.0.4",
"@angular/compiler": "^9.1.13",
"@angular/compiler-cli": "^9.0.4",
"@angular/language-service": "^7.2.16",
"@angular-devkit/build-angular": "^0.1002.4",
"@angular-devkit/core": "^10.2.4",
"@angular-devkit/schematics": "^10.2.4",
"@angular/cli": "^10.2.4",
"@angular/compiler": "^10.2.5",
"@angular/compiler-cli": "^10.2.5",
"@angular/language-service": "^10.2.5",
"@ionic/angular-toolkit": "^2.2.0",
"@types/jasmine": "^3.5.9",
"@types/jasminewd2": "^2.0.8",
"@types/node": "14.6.2",
"codelyzer": "^5.2.1",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.5.2",
"protractor": "^5.4.3",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"puppeteer": "^10.4.0",
"ts-node": "^8.1.1",
"tslint": "~5.16.0",
"typescript": "^3.6.5"
"tslint": "~6.1.0",
"typescript": "^4.0.8"
},
"description": "An Ionic project",
"cordova": {
......@@ -93,4 +93,4 @@
"browser"
]
}
}
}
\ No newline at end of file
......@@ -6,7 +6,7 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"module": "es2020",
// es2015
"moduleResolution": "node",
"emitDecoratorMetadata": true,
......
......@@ -4,17 +4,32 @@
"codelyzer"
],
"rules": {
"align": {
"options": [
"parameters",
"statements"
]
},
"array-type": false,
"arrow-parens": false,
"arrow-return-shorthand": true,
"deprecation": {
"severity": "warn"
},
"curly": true,
"import-blacklist": [
true,
"rxjs/Rx"
],
"interface-name": false,
"eofline": true,
"max-classes-per-file": false,
"import-spacing": true,
"indent": {
"options": [
"spaces"
]
},
"max-line-length": [
true,
140
......@@ -48,7 +63,6 @@
"no-non-null-assertion": true,
"no-redundant-jsdoc": false,
"no-switch-case-fall-through": true,
"no-use-before-declare": true,
"no-var-requires": false,
"object-literal-key-quotes": [
true,
......@@ -66,11 +80,60 @@
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-input-rename": true,
"semicolon": {
"options": [
"always"
]
},
"space-before-function-paren": {
"options": {
"anonymous": "never",
"asyncArrow": "always",
"constructor": "never",
"method": "never",
"named": "never"
}
},
"no-output-rename": true,
"typedef-whitespace": {
"options": [
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "onespace",
"index-signature": "onespace",
"parameter": "onespace",
"property-declaration": "onespace",
"variable-declaration": "onespace"
}
]
},
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"one-variable-per-declaration": false,
"component-class-suffix": [true, "Page", "Component"],
"directive-class-suffix": true
"directive-class-suffix": true,
"variable-name": {
"options": [
"ban-keywords",
"check-format",
"allow-pascal-case"
]
},
"whitespace": {
"options": [
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type",
"check-typecast"
]
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment