@lad-tech/nsc-toolkit 1.12.1 → 1.13.0
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/CHANGELOG.md +3 -3
- package/README.md +167 -158
- package/dist/Container.js +30 -4
- package/dist/Container.js.map +1 -1
- package/dist/interfaces.js.map +1 -1
- package/dist/types/Container.d.ts +14 -3
- package/dist/types/interfaces.d.ts +3 -0
- package/package.json +1 -1
- package/.eslintrc.json +0 -104
- package/.github/workflows/main_workflow.yml +0 -40
- package/.prettierrc.json +0 -9
- package/.releaserc +0 -12
- package/coverage/clover.xml +0 -1014
- package/coverage/coverage-final.json +0 -36
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/examples/LogicService/adapters/AuthToolkit.ts.html +0 -130
- package/coverage/lcov-report/examples/LogicService/adapters/Configurator.ts.html +0 -130
- package/coverage/lcov-report/examples/LogicService/adapters/Repository.ts.html +0 -136
- package/coverage/lcov-report/examples/LogicService/adapters/index.html +0 -161
- package/coverage/lcov-report/examples/LogicService/adapters/index.ts.html +0 -91
- package/coverage/lcov-report/examples/LogicService/index.html +0 -146
- package/coverage/lcov-report/examples/LogicService/index.ts.html +0 -208
- package/coverage/lcov-report/examples/LogicService/inversion.types.ts.html +0 -106
- package/coverage/lcov-report/examples/LogicService/methods/GetUser.ts.html +0 -151
- package/coverage/lcov-report/examples/LogicService/methods/GetUserV2.ts.html +0 -160
- package/coverage/lcov-report/examples/LogicService/methods/RegisterNewUser.ts.html +0 -148
- package/coverage/lcov-report/examples/LogicService/methods/WeirdSum.ts.html +0 -148
- package/coverage/lcov-report/examples/LogicService/methods/index.html +0 -161
- package/coverage/lcov-report/examples/LogicService/service.ts.html +0 -202
- package/coverage/lcov-report/examples/MathService/index.html +0 -131
- package/coverage/lcov-report/examples/MathService/index.ts.html +0 -148
- package/coverage/lcov-report/examples/MathService/methods/Fibonacci.ts.html +0 -169
- package/coverage/lcov-report/examples/MathService/methods/Sum.ts.html +0 -133
- package/coverage/lcov-report/examples/MathService/methods/SumStream.ts.html +0 -190
- package/coverage/lcov-report/examples/MathService/methods/index.html +0 -146
- package/coverage/lcov-report/examples/MathService/service.ts.html +0 -145
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -236
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -196
- package/coverage/lcov.info +0 -1919
- package/tsconfig.json +0 -19
package/tsconfig.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"declaration": true,
|
|
4
|
-
"sourceMap": true,
|
|
5
|
-
"strictNullChecks": true,
|
|
6
|
-
"module": "commonjs",
|
|
7
|
-
"target": "es2019",
|
|
8
|
-
"allowJs": false,
|
|
9
|
-
"resolveJsonModule": true,
|
|
10
|
-
"skipLibCheck": true,
|
|
11
|
-
"experimentalDecorators": true,
|
|
12
|
-
"emitDecoratorMetadata": true,
|
|
13
|
-
"lib": ["es2019"],
|
|
14
|
-
"outDir": "./dist",
|
|
15
|
-
"declarationDir": "./dist/types/"
|
|
16
|
-
},
|
|
17
|
-
"include": ["."],
|
|
18
|
-
"exclude": ["node_modules", "./examples/**/*", "dist/**/*", "./src/__tests__/**/*"]
|
|
19
|
-
}
|