🎉 Initial commit

This commit is contained in:
Freeze455
2021-08-16 22:35:42 +02:00
parent b241751437
commit 74551ad831
11 changed files with 1400 additions and 103 deletions

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
"experimentalDecorators": true,
}
}