Change first level build target of bin

This commit is contained in:
Joseph Garrone
2024-06-06 06:11:34 +02:00
parent dae1053ca8
commit 58892cbb56
2 changed files with 38 additions and 7 deletions

View File

@ -1,10 +1,11 @@
{
"extends": "../../tsproject.json",
"compilerOptions": {
"module": "CommonJS",
"target": "ES5",
"module": "ES2020",
"target": "ES2017",
"esModuleInterop": true,
"lib": ["es2015", "DOM", "ES2019.Object"],
"lib": ["es2015", "ES2019.Object"],
"moduleResolution": "node",
"outDir": "../../dist/bin",
"rootDir": "."
}