@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.
Files changed (45) hide show
  1. package/CHANGELOG.md +3 -3
  2. package/README.md +167 -158
  3. package/dist/Container.js +30 -4
  4. package/dist/Container.js.map +1 -1
  5. package/dist/interfaces.js.map +1 -1
  6. package/dist/types/Container.d.ts +14 -3
  7. package/dist/types/interfaces.d.ts +3 -0
  8. package/package.json +1 -1
  9. package/.eslintrc.json +0 -104
  10. package/.github/workflows/main_workflow.yml +0 -40
  11. package/.prettierrc.json +0 -9
  12. package/.releaserc +0 -12
  13. package/coverage/clover.xml +0 -1014
  14. package/coverage/coverage-final.json +0 -36
  15. package/coverage/lcov-report/base.css +0 -224
  16. package/coverage/lcov-report/block-navigation.js +0 -87
  17. package/coverage/lcov-report/examples/LogicService/adapters/AuthToolkit.ts.html +0 -130
  18. package/coverage/lcov-report/examples/LogicService/adapters/Configurator.ts.html +0 -130
  19. package/coverage/lcov-report/examples/LogicService/adapters/Repository.ts.html +0 -136
  20. package/coverage/lcov-report/examples/LogicService/adapters/index.html +0 -161
  21. package/coverage/lcov-report/examples/LogicService/adapters/index.ts.html +0 -91
  22. package/coverage/lcov-report/examples/LogicService/index.html +0 -146
  23. package/coverage/lcov-report/examples/LogicService/index.ts.html +0 -208
  24. package/coverage/lcov-report/examples/LogicService/inversion.types.ts.html +0 -106
  25. package/coverage/lcov-report/examples/LogicService/methods/GetUser.ts.html +0 -151
  26. package/coverage/lcov-report/examples/LogicService/methods/GetUserV2.ts.html +0 -160
  27. package/coverage/lcov-report/examples/LogicService/methods/RegisterNewUser.ts.html +0 -148
  28. package/coverage/lcov-report/examples/LogicService/methods/WeirdSum.ts.html +0 -148
  29. package/coverage/lcov-report/examples/LogicService/methods/index.html +0 -161
  30. package/coverage/lcov-report/examples/LogicService/service.ts.html +0 -202
  31. package/coverage/lcov-report/examples/MathService/index.html +0 -131
  32. package/coverage/lcov-report/examples/MathService/index.ts.html +0 -148
  33. package/coverage/lcov-report/examples/MathService/methods/Fibonacci.ts.html +0 -169
  34. package/coverage/lcov-report/examples/MathService/methods/Sum.ts.html +0 -133
  35. package/coverage/lcov-report/examples/MathService/methods/SumStream.ts.html +0 -190
  36. package/coverage/lcov-report/examples/MathService/methods/index.html +0 -146
  37. package/coverage/lcov-report/examples/MathService/service.ts.html +0 -145
  38. package/coverage/lcov-report/favicon.png +0 -0
  39. package/coverage/lcov-report/index.html +0 -236
  40. package/coverage/lcov-report/prettify.css +0 -1
  41. package/coverage/lcov-report/prettify.js +0 -2
  42. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  43. package/coverage/lcov-report/sorter.js +0 -196
  44. package/coverage/lcov.info +0 -1919
  45. 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
- }