diff --git a/packages/feflow-cli/package.json b/packages/feflow-cli/package.json index 96a4e4aa..6811c0a3 100644 --- a/packages/feflow-cli/package.json +++ b/packages/feflow-cli/package.json @@ -74,6 +74,7 @@ }, "license": "MIT", "bin": { + "feflow": "./bin/feflow", "fef": "./bin/feflow" }, "keywords": [ diff --git a/packages/feflow-cli/tsconfig.json b/packages/feflow-cli/tsconfig.json index 16286a4a..8833dd0f 100644 --- a/packages/feflow-cli/tsconfig.json +++ b/packages/feflow-cli/tsconfig.json @@ -1,14 +1,16 @@ { "extends": "../../tsconfig.json", "compilerOptions": { - "outDir": "lib", - "module": "esnext", "target": "es5", - "sourceMap": true, - "allowJs": true, - "baseUrl": ".", - "moduleResolution": "node", + "module": "commonjs", + "lib": ["es6", "es2015", "dom"], + "declaration": true, + "outDir": "lib", "rootDir": "src", + "strict": true, + "types": ["node", "mocha"], + "esModuleInterop": true, + "resolveJsonModule": true, "typeRoots": ["node_modules/@types", "./types"], }, "exclude": [