Skip to content

Commit 8846450

Browse files
committed
fix(cli): Fix build
1 parent 29b2d02 commit 8846450

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/cli",
3-
"version": "0.7.4",
3+
"version": "0.7.5",
44
"description": "CLI for the swc project",
55
"main": "lib/swc/index.js",
66
"scripts": {

packages/cli/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"compilerOptions": {
33
"target": "es2019",
44
"module": "commonjs",
5-
"noEmit": true,
65
"strict": true,
76
"noUnusedLocals": true,
87
"noUnusedParameters": true,
98
"noImplicitReturns": true,
109
"noFallthroughCasesInSwitch": true,
1110
"esModuleInterop": true,
12-
"lib": ["ES2019.Array", "ES2020.Promise", "ES2015"]
11+
"lib": ["ES2019.Array", "ES2020.Promise", "ES2015"],
12+
"outDir": "./lib"
1313
},
1414
"include": ["src"]
1515
}

0 commit comments

Comments
 (0)