Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock: false
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ How to build scalable microservices using LoopBack.next.

Make sure you have the following installed:

- [Node.js](https://nodejs.org/en/download/) >= 7.0.0
- [Node.js](https://nodejs.org/en/download/) >= 8.0.0
- [TypeScript](https://www.typescriptlang.org/index.html#download-links) >= 2.0.0 `npm i -g typescript`
- [TypeScript Node](https://github.com/TypeStrong/ts-node#installation) >= 3.0.0 `npm i -g ts-node`

Expand Down
1 change: 1 addition & 0 deletions services/account-without-juggler/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock: false
3 changes: 3 additions & 0 deletions services/account-without-juggler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.0.0",
"description": "The Account microservice.",
"main": "index.ts",
"engines": {
"node": ">=8"
},
"dependencies": {
"mysql": "^2.13.0",
"mysql-promise": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion services/account-without-juggler/tsconfig.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lib": ["es2017", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"target": "es2017",
"sourceMap": true,
"declaration": true
}
Expand Down
4 changes: 2 additions & 2 deletions services/account-without-juggler/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es6",
"es2017",
"dom"
],
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"target": "es2017",
"typeRoots": [
"node_modules/@types"
],
Expand Down
1 change: 1 addition & 0 deletions services/account/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock: false
2 changes: 1 addition & 1 deletion services/account/controllers/AccountController.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Filter, Where } from '@loopback/repository';
import { api } from '@loopback/core';
import { api } from '@loopback/rest';
import { def } from './AccountController.api';
import { AccountRepository } from '../repositories/account';

Expand Down
Loading