openvidu-insecure-angular Angular update
This commit is contained in:
parent
53e19b00aa
commit
b761491eac
12
openvidu-insecure-angular/.browserslistrc
Normal file
12
openvidu-insecure-angular/.browserslistrc
Normal file
@ -0,0 +1,12 @@
|
||||
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
|
||||
# For additional information regarding the format and rule options, please see:
|
||||
# https://github.com/browserslist/browserslist#queries
|
||||
|
||||
# You can see what browsers were selected by your queries by running:
|
||||
# npx browserslist
|
||||
|
||||
> 0.5%
|
||||
last 2 versions
|
||||
Firefox ESR
|
||||
not dead
|
||||
not IE 9-11 # For IE 9-11 support, remove 'not'.
|
||||
@ -3,7 +3,7 @@
|
||||
"compilerOptions": {
|
||||
"outDir": "../out-tsc/e2e",
|
||||
"module": "commonjs",
|
||||
"target": "es5",
|
||||
"target": "es2018",
|
||||
"types": [
|
||||
"jasmine",
|
||||
"jasminewd2",
|
||||
|
||||
5447
openvidu-insecure-angular/package-lock.json
generated
5447
openvidu-insecure-angular/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -6,38 +6,38 @@
|
||||
"start": "ng serve"
|
||||
},
|
||||
"dependencies": {
|
||||
"@angular/animations": "9.0.6",
|
||||
"@angular/common": "9.0.6",
|
||||
"@angular/compiler": "9.0.6",
|
||||
"@angular/core": "9.0.6",
|
||||
"@angular/forms": "9.0.6",
|
||||
"@angular/platform-browser": "9.0.6",
|
||||
"@angular/platform-browser-dynamic": "9.0.6",
|
||||
"@angular/router": "9.0.6",
|
||||
"@angular/animations": "10.2.4",
|
||||
"@angular/common": "10.2.4",
|
||||
"@angular/compiler": "10.2.4",
|
||||
"@angular/core": "10.2.4",
|
||||
"@angular/forms": "10.2.4",
|
||||
"@angular/platform-browser": "10.2.4",
|
||||
"@angular/platform-browser-dynamic": "10.2.4",
|
||||
"@angular/router": "10.2.4",
|
||||
"rxjs": "6.5.4",
|
||||
"tslib": "1.11.1",
|
||||
"zone.js": "0.10.2",
|
||||
"tslib": "^2.0.0",
|
||||
"zone.js": "0.10.3",
|
||||
"openvidu-browser": "2.17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "0.900.6",
|
||||
"@angular/cli": "9.0.6",
|
||||
"@angular/compiler-cli": "9.0.6",
|
||||
"@angular/language-service": "9.0.6",
|
||||
"@angular-devkit/build-angular": "0.1002.3",
|
||||
"@angular/cli": "10.2.3",
|
||||
"@angular/compiler-cli": "10.2.4",
|
||||
"@angular/language-service": "10.2.4",
|
||||
"@types/node": "13.9.1",
|
||||
"@types/jasmine": "3.5.9",
|
||||
"@types/jasminewd2": "2.0.8",
|
||||
"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": "2.1.1",
|
||||
"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",
|
||||
"ts-node": "8.6.2",
|
||||
"tslint": "6.1.0",
|
||||
"typescript": "3.7.5"
|
||||
"tslint": "~6.1.0",
|
||||
"typescript": "4.0.7"
|
||||
}
|
||||
}
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
"declaration": false,
|
||||
"downlevelIteration": true,
|
||||
"experimentalDecorators": true,
|
||||
"module": "esnext",
|
||||
"module": "es2020",
|
||||
"moduleResolution": "node",
|
||||
"importHelpers": true,
|
||||
"target": "es2015",
|
||||
|
||||
@ -1,13 +1,21 @@
|
||||
{
|
||||
"extends": "tslint:recommended",
|
||||
"rules": {
|
||||
"align": {
|
||||
"options": [
|
||||
"parameters",
|
||||
"statements"
|
||||
]
|
||||
},
|
||||
"array-type": false,
|
||||
"arrow-parens": false,
|
||||
"arrow-return-shorthand": true,
|
||||
"deprecation": {
|
||||
"severity": "warning"
|
||||
},
|
||||
"component-class-suffix": true,
|
||||
"contextual-lifecycle": true,
|
||||
"curly": true,
|
||||
"directive-class-suffix": true,
|
||||
"directive-selector": [
|
||||
true,
|
||||
@ -21,10 +29,17 @@
|
||||
"app",
|
||||
"kebab-case"
|
||||
],
|
||||
"eofline": true,
|
||||
"import-blacklist": [
|
||||
true,
|
||||
"rxjs/Rx"
|
||||
],
|
||||
"import-spacing": true,
|
||||
"indent": {
|
||||
"options": [
|
||||
"spaces"
|
||||
]
|
||||
},
|
||||
"interface-name": false,
|
||||
"max-classes-per-file": false,
|
||||
"max-line-length": [
|
||||
@ -79,11 +94,60 @@
|
||||
"no-output-native": true,
|
||||
"no-output-on-prefix": true,
|
||||
"no-output-rename": true,
|
||||
"semicolon": {
|
||||
"options": [
|
||||
"always"
|
||||
]
|
||||
},
|
||||
"space-before-function-paren": {
|
||||
"options": {
|
||||
"anonymous": "never",
|
||||
"asyncArrow": "always",
|
||||
"constructor": "never",
|
||||
"method": "never",
|
||||
"named": "never"
|
||||
}
|
||||
},
|
||||
"no-outputs-metadata-property": true,
|
||||
"template-banana-in-box": true,
|
||||
"template-no-negated-async": 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-lifecycle-interface": true,
|
||||
"use-pipe-transform-interface": true
|
||||
"use-pipe-transform-interface": 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"
|
||||
]
|
||||
}
|
||||
},
|
||||
"rulesDirectory": [
|
||||
"codelyzer"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user