Skip to content

Commit be4a5ae

Browse files
committed
ts conf simplifications
1 parent f7f2ec4 commit be4a5ae

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"@types/inquirer": "^8.2.1",
4949
"@types/jest": "^29.0.0",
5050
"@types/jscodeshift": "^0.11.6",
51+
"@types/node": "^16.11.0",
5152
"@types/prettier": "^2.0.0",
5253
"@types/tar": "^4.0.4",
5354
"@typescript-eslint/eslint-plugin": "^5.0.0",

packages/cli/src/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ Examples:
180180
}
181181

182182
console.error(chalk.red(error));
183-
console.log(error);
184183
process.exit(1);
185184
}
186185
})();

tsconfig.json

+2-12
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,8 @@
77
"module": "CommonJS",
88
"resolveJsonModule": true,
99
"esModuleInterop": true,
10-
"lib": [
11-
"es5",
12-
"scripthost",
13-
"es2015.core",
14-
"es2015.collection",
15-
"es2015.symbol",
16-
"es2015.iterable",
17-
"es2015.promise",
18-
"es2016",
19-
"es2017"
20-
]
10+
"lib": ["ESNext", "scripthost"]
2111
},
2212
"include": ["packages/**/*", "community/**/*", "scripts"],
23-
"exclude": ["./node_modules", "./plugin_packages"]
13+
"exclude": ["./plugin_packages"]
2414
}

0 commit comments

Comments
 (0)