Skip to content

Commit

Permalink
added tsconfig build
Browse files Browse the repository at this point in the history
  • Loading branch information
gmmorris committed Apr 30, 2020
1 parent 804eb67 commit a266452
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion x-pack/plugins/task_manager/server/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*/

import { TaskManager as TaskManagerClass } from './task_manager';
import { TaskManagerSetupContract, TaskManagerStartContract } from './plugin';

export type TaskManager = PublicMethodsOf<TaskManagerClass>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"main": "target/test/plugin_api_perf/plugins/task_manager_performance",
"scripts": {
"kbn": "node ../../../../../scripts/kbn.js",
"build": "rm -rf './target' && tsc"
"build": "rm -rf './target' && tsc",
"test:generate": "ts-node --project scripts/cli_tsconfig.json"
},
"dependencies": {
"lodash": "^4.17.15",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../../../../tsconfig.json",
"compilerOptions": {
"target": "es2019",
"resolveJsonModule": true
}
}

0 comments on commit a266452

Please sign in to comment.