@lyrolab/nest-shared 1.8.0 → 1.9.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lyrolab/nest-shared",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "A collection of shared modules for NestJS applications",
5
5
  "author": "",
6
6
  "license": "UNLICENSED",
@@ -61,8 +61,8 @@
61
61
  },
62
62
  "scripts": {
63
63
  "prebuild": "rimraf dist",
64
- "build": "tsc -p tsconfig.json",
65
- "dev": "tsc -p tsconfig.json --watch",
64
+ "build": "tsc -p tsconfig.build.json",
65
+ "dev": "tsc -p tsconfig.build.json --watch",
66
66
  "lint": "eslint 'src/**/*.ts' --fix",
67
67
  "test": "jest",
68
68
  "test:watch": "jest --watch",
@@ -169,12 +169,8 @@
169
169
  "coverageDirectory": "./coverage",
170
170
  "testEnvironment": "node",
171
171
  "roots": [
172
- "<rootDir>/src/",
173
- "<rootDir>/libs/"
174
- ],
175
- "moduleNameMapper": {
176
- "^@app/nest-shared(|/.*)$": "<rootDir>/libs/nest-shared/src/$1"
177
- }
172
+ "<rootDir>/src/"
173
+ ]
178
174
  },
179
175
  "commitlint": {
180
176
  "extends": [
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "exclude": ["node_modules", "dist", "**/*.spec.ts", "tests"]
4
+ }