7
Some checks failed
Publish Docker Images / docker (push) Failing after 13s

This commit is contained in:
Lee 2023-11-16 12:42:47 +00:00
parent d7a49ca544
commit c130cb2be5
4 changed files with 6 additions and 12 deletions

@ -1,7 +1,3 @@
{
"extends": "tsconfig/server.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
}
"extends": "tsconfig/server.json"
}

@ -1,7 +1,3 @@
{
"extends": "tsconfig/server.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
}
"extends": "tsconfig/server.json"
}

@ -13,6 +13,7 @@
"express": "^4.18.2"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts"
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch"
}
}

@ -10,6 +10,7 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts"
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch"
}
}