Added fetching scripts

This commit is contained in:
Sebastian Seedorf
2022-08-19 18:02:11 +02:00
parent d158153fa1
commit 8227cc631d
15 changed files with 1052 additions and 1176 deletions

17
tsconfig.node.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"lib": ["esnext"],
"module": "commonjs",
"moduleResolution": "Node",
"target": "es5",
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"incremental": true,
"skipLibCheck": true,
"outDir": "scripts-dist",
"sourceRoot": "scripts"
},
"include": ["scripts/**/*.ts"],
"exclude": ["node_modules"]
}