setup typescript

This commit is contained in:
mxmlndml
2023-05-28 12:20:25 +02:00
parent 5a35244d2f
commit 42622bf56d
4 changed files with 385 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "cloudflare-ddns",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "pnpm build && node ."
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.2.5",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
}
}