Dateien nach "/" hochladen
This commit is contained in:
parent
b392003f0b
commit
776c610574
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
node_modules
|
||||
package-log.json
|
20
package.json
Normal file
20
package.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "flummpressts",
|
||||
"version": "2.0.0",
|
||||
"description": "",
|
||||
"main": "index.mjs",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"start": "node ./dist/index.js",
|
||||
"doc": "typedoc --out docs src"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "Flummi",
|
||||
"license": "ISC",
|
||||
"type": "module",
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.13.10",
|
||||
"typedoc": "^0.27.9",
|
||||
"typescript": "^5.8.2"
|
||||
}
|
||||
}
|
13
tsconfig.json
Normal file
13
tsconfig.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES6",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src",
|
||||
"strict": true,
|
||||
"esModuleInterop": true
|
||||
},
|
||||
"include": ["src"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
4
typedoc.json
Normal file
4
typedoc.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"entryPoints": ["./src/index.ts"],
|
||||
"out": "docs"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user