Switch to TypeScript

This commit is contained in:
asraelite 2024-05-13 18:29:10 +02:00 committed by Markus Scully
parent 1648b7e3d0
commit bf71f55130
45 changed files with 754 additions and 159 deletions

12
tsconfig.json Normal file
View file

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es2022",
"module": "esnext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"skipLibCheck": true,
"outDir": "out",
},
"include": ["./src/**/*.ts"]
}