Skip to content

Commit

Permalink
fix: cli build config
Browse files Browse the repository at this point in the history
  • Loading branch information
yknl committed Aug 24, 2020
1 parent b088271 commit 2959c20
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@stacks/cli",
"version": "1.0.0-alpha.3",
"version": "1.0.0-alpha.5",
"description": "Stacks command line tool",
"keywords": [
"stacks",
Expand Down
20 changes: 13 additions & 7 deletions packages/cli/tsconfig.build.json
@@ -1,14 +1,20 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"noEmit": false,
"rootDir": "./src",
"outDir": "./lib"
"target": "es2018",
"module": "commonjs",
"esModuleInterop": false,
"allowSyntheticDefaultImports": false,
"moduleResolution": "node",
"declaration": true,
"noImplicitAny": true,
"outDir": "lib",
"sourceMap": true,
"skipLibCheck": true,
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules/**/*"
]
}

0 comments on commit 2959c20

Please sign in to comment.