This commit is contained in:
2023-01-29 14:30:01 +01:00
parent 08b71d12c9
commit 6ca6b5aa7d
10 changed files with 238 additions and 42 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitReturns": true,
"noUnusedLocals": true,
"outDir": "public/js",
"sourceMap": true,
"strict": true,
"target": "esnext",
"watch": true
},
"compileOnSave": true,
"include": [
"ts"
]
}