@sabstravtech/obtservices 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -1
- package/.editorconfig +0 -13
- package/.gitmodules +0 -0
- package/.vscode/settings.json +0 -4
- package/angular.json +0 -45
- package/audit.config.json +0 -6
- package/codegen.yml +0 -18
- package/ng-package.json +0 -7
- package/tsconfig.json +0 -36
- package/tslint.json +0 -62
package/package.json
CHANGED
package/.editorconfig
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Editor configuration, see https://editorconfig.org
|
|
2
|
-
root = true
|
|
3
|
-
|
|
4
|
-
[*]
|
|
5
|
-
charset = utf-8
|
|
6
|
-
indent_style = space
|
|
7
|
-
indent_size = 2
|
|
8
|
-
insert_final_newline = true
|
|
9
|
-
trim_trailing_whitespace = true
|
|
10
|
-
|
|
11
|
-
[*.md]
|
|
12
|
-
max_line_length = off
|
|
13
|
-
trim_trailing_whitespace = false
|
package/.gitmodules
DELETED
|
File without changes
|
package/.vscode/settings.json
DELETED
package/angular.json
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
-
"cli": {
|
|
4
|
-
"analytics": false
|
|
5
|
-
},
|
|
6
|
-
"version": 1,
|
|
7
|
-
"newProjectRoot": "projects",
|
|
8
|
-
"projects": {
|
|
9
|
-
"obtservices": {
|
|
10
|
-
"projectType": "library",
|
|
11
|
-
"root": "projects/obtservices",
|
|
12
|
-
"sourceRoot": "projects/obtservices/src",
|
|
13
|
-
"prefix": "lib",
|
|
14
|
-
"architect": {
|
|
15
|
-
"build": {
|
|
16
|
-
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
17
|
-
"options": {
|
|
18
|
-
"tsConfig": "projects/obtservices/tsconfig.lib.json",
|
|
19
|
-
"project": "projects/obtservices/ng-package.json"
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"test": {
|
|
23
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
24
|
-
"options": {
|
|
25
|
-
"main": "projects/obtservices/src/test.ts",
|
|
26
|
-
"tsConfig": "projects/obtservices/tsconfig.spec.json",
|
|
27
|
-
"karmaConfig": "projects/obtservices/karma.conf.js"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"lint": {
|
|
31
|
-
"builder": "@angular-devkit/build-angular:tslint",
|
|
32
|
-
"options": {
|
|
33
|
-
"tsConfig": [
|
|
34
|
-
"projects/obtservices/tsconfig.lib.json",
|
|
35
|
-
"projects/obtservices/tsconfig.spec.json"
|
|
36
|
-
],
|
|
37
|
-
"exclude": [
|
|
38
|
-
"**/node_modules/**"
|
|
39
|
-
]
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}},
|
|
44
|
-
"defaultProject": "obtservices"
|
|
45
|
-
}
|
package/audit.config.json
DELETED
package/codegen.yml
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
schema: "./projects/obtservices/graphQL/schema/*.graphql"
|
|
2
|
-
documents: "./projects/obtservices/graphQL/documents/*.graphql"
|
|
3
|
-
generates:
|
|
4
|
-
./projects/obtservices/base/src/lib/vendor/types/graphql.types.ts:
|
|
5
|
-
plugins:
|
|
6
|
-
- typescript
|
|
7
|
-
- typescript-operations
|
|
8
|
-
- typescript-compatibility
|
|
9
|
-
config:
|
|
10
|
-
wrapFieldDefinitions: true
|
|
11
|
-
./projects/obtservices/angular/src/lib/vendor/types/graphql.angular.types.ts:
|
|
12
|
-
plugins:
|
|
13
|
-
- typescript
|
|
14
|
-
- typescript-operations
|
|
15
|
-
- typescript-compatibility
|
|
16
|
-
- typescript-apollo-angular
|
|
17
|
-
config:
|
|
18
|
-
wrapFieldDefinitions: true
|
package/ng-package.json
DELETED
package/tsconfig.json
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compileOnSave": false,
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"allowSyntheticDefaultImports": true,
|
|
5
|
-
"baseUrl": "./",
|
|
6
|
-
"declaration": false,
|
|
7
|
-
"downlevelIteration": true,
|
|
8
|
-
"experimentalDecorators": true,
|
|
9
|
-
"importHelpers": true,
|
|
10
|
-
"module": "esnext",
|
|
11
|
-
"moduleResolution": "node",
|
|
12
|
-
"outDir": "./dist/out-tsc",
|
|
13
|
-
"noImplicitAny": true,
|
|
14
|
-
"resolveJsonModule": true,
|
|
15
|
-
"sourceMap": true,
|
|
16
|
-
"target": "es2015",
|
|
17
|
-
"typeRoots": [
|
|
18
|
-
"node_modules/@types"
|
|
19
|
-
],
|
|
20
|
-
"lib": [
|
|
21
|
-
"es2018",
|
|
22
|
-
"dom",
|
|
23
|
-
"esnext.asynciterable"
|
|
24
|
-
],
|
|
25
|
-
"paths": {
|
|
26
|
-
"obtservices/base": [
|
|
27
|
-
"/projects/obtservices/base/src/public_api.ts",
|
|
28
|
-
]
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
"angularCompilerOptions": {
|
|
32
|
-
"fullTemplateTypeCheck": true,
|
|
33
|
-
"strictInjectionParameters": true,
|
|
34
|
-
"enableIvy": false
|
|
35
|
-
}
|
|
36
|
-
}
|
package/tslint.json
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "tslint:recommended",
|
|
3
|
-
"rulesDirectory": ["codelyzer"],
|
|
4
|
-
"rules": {
|
|
5
|
-
"allowSyntheticDefaultImports": true,
|
|
6
|
-
"array-type": false,
|
|
7
|
-
"arrow-parens": false,
|
|
8
|
-
"deprecation": {
|
|
9
|
-
"severity": "warning"
|
|
10
|
-
},
|
|
11
|
-
"import-blacklist": [true, "rxjs/Rx"],
|
|
12
|
-
"interface-name": false,
|
|
13
|
-
"jsdoc-format": false,
|
|
14
|
-
"max-classes-per-file": false,
|
|
15
|
-
"max-line-length": [true, 140],
|
|
16
|
-
"member-access": false,
|
|
17
|
-
"member-ordering": [
|
|
18
|
-
true,
|
|
19
|
-
{
|
|
20
|
-
"order": [
|
|
21
|
-
"static-field",
|
|
22
|
-
"instance-field",
|
|
23
|
-
"static-method",
|
|
24
|
-
"instance-method"
|
|
25
|
-
]
|
|
26
|
-
}
|
|
27
|
-
],
|
|
28
|
-
"no-consecutive-blank-lines": false,
|
|
29
|
-
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
|
|
30
|
-
"no-empty": false,
|
|
31
|
-
"no-namespace": false,
|
|
32
|
-
"no-non-null-assertion": true,
|
|
33
|
-
"no-redundant-jsdoc": false,
|
|
34
|
-
"no-switch-case-fall-through": true,
|
|
35
|
-
"no-use-before-declare": true,
|
|
36
|
-
"no-var-requires": false,
|
|
37
|
-
"object-literal-key-quotes": [true, "as-needed"],
|
|
38
|
-
"object-literal-sort-keys": false,
|
|
39
|
-
"ordered-imports": false,
|
|
40
|
-
"quotemark": [true, "single"],
|
|
41
|
-
"trailing-comma": false,
|
|
42
|
-
"component-class-suffix": true,
|
|
43
|
-
"contextual-lifecycle": true,
|
|
44
|
-
"directive-class-suffix": true,
|
|
45
|
-
"no-conflicting-lifecycle": true,
|
|
46
|
-
"no-host-metadata-property": true,
|
|
47
|
-
"no-input-rename": true,
|
|
48
|
-
"no-inputs-metadata-property": true,
|
|
49
|
-
"no-output-native": true,
|
|
50
|
-
"no-output-on-prefix": true,
|
|
51
|
-
"no-output-rename": true,
|
|
52
|
-
"no-outputs-metadata-property": true,
|
|
53
|
-
"template-banana-in-box": true,
|
|
54
|
-
"template-no-negated-async": true,
|
|
55
|
-
"use-lifecycle-interface": true,
|
|
56
|
-
"use-pipe-transform-interface": true,
|
|
57
|
-
"variable-name": false,
|
|
58
|
-
"interface-over-type-literal": false,
|
|
59
|
-
"no-inferrable-types": false,
|
|
60
|
-
"prefer-for-of": false
|
|
61
|
-
}
|
|
62
|
-
}
|