Skip to content

Commit

Permalink
fix: Typescript target compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Dec 31, 2018
1 parent efa6b29 commit 56a7a6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/di/src/decorators/constant.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Store} from "@tsed/core";
import {IInjectableProperties} from "@tsed/di";
import {IInjectableProperties} from "../interfaces/IInjectableProperties";

/**
* Return value from ServerSettingsService.
Expand Down
2 changes: 1 addition & 1 deletion packages/di/src/decorators/value.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Store} from "@tsed/core";
import {IInjectableProperties} from "@tsed/di";
import {IInjectableProperties} from "../interfaces/IInjectableProperties";

/**
* Return value from ServerSettingsService.
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"baseUrl": ".",
"module": "commonjs",
"target": "es2017",
"target": "es2016",
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
Expand Down

0 comments on commit 56a7a6c

Please sign in to comment.