@futdevpro/nts-dynamo 1.3.43 → 1.3.46

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 (2) hide show
  1. package/package.json +13 -16
  2. package/tsconfig.json +2 -1
package/package.json CHANGED
@@ -1,15 +1,8 @@
1
1
  {
2
2
  "name": "@futdevpro/nts-dynamo",
3
- "version": "01.03.43",
3
+ "version": "01.03.46",
4
4
  "description": "Dynamic NodeTS (NodeJS-Typescript), MongoDB Backend System Framework by Future Development Ltd.",
5
5
  "main": "./lib/index.js",
6
- "module": "./lib/index.js",
7
- "modules": {
8
- "enums": "lib/_enums/index.d.ts",
9
- "models": "lib/_models/index.d.ts",
10
- "modules": "lib/_modules/index.d.ts",
11
- "services": "lib/_services/index.d.ts"
12
- },
13
6
  "types": "./lib/index.d.ts",
14
7
  "typings": "./lib/index.d.ts",
15
8
  "exports": {
@@ -36,20 +29,24 @@
36
29
  },
37
30
  "typesVersions": {
38
31
  "*": {
39
- "enums": [ "lib/_enums/index.d.ts" ],
40
- "models": [ "lib/_models/index.d.ts" ],
41
- "modules": [ "lib/_modules/index.d.ts" ],
42
- "services": [ "lib/_services/index.d.ts" ]
32
+ "enums": [
33
+ "lib/_enums/index.d.ts"
34
+ ],
35
+ "models": [
36
+ "lib/_models/index.d.ts"
37
+ ],
38
+ "modules": [
39
+ "lib/_modules/index.d.ts"
40
+ ],
41
+ "services": [
42
+ "lib/_services/index.d.ts"
43
+ ]
43
44
  }
44
45
  },
45
46
  "repository": {
46
47
  "type": "git",
47
48
  "url": "git+https://gitlab.com/futdevpro/dynamo-be.git"
48
49
  },
49
- "scripts": {
50
- "test": "echo \"Error: no test specified\" && exit 1",
51
- "build": "npx tsc"
52
- },
53
50
  "keywords": [
54
51
  "nodejs",
55
52
  "typescript",
package/tsconfig.json CHANGED
@@ -2,7 +2,8 @@
2
2
  "compilerOptions": {
3
3
  /* Basic Options */
4
4
  "incremental": true, /* Enable incremental compilation */
5
- "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
5
+ "target": "es2015",
6
+ //"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
6
7
  "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
7
8
  "lib": ["es6"], /* Specify library files to be included in the compilation. */
8
9
  "allowJs": true, /* Allow javascript files to be compiled. */