Migrate to esbuild & ts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
soraefir
2025-02-23 15:20:34 +01:00
parent 96c12c8da4
commit 90f6ae7695
10 changed files with 590 additions and 220 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "esnext",
"typeRoots": ["./node_modules/@types", "./types/ext"],
"lib": ["esnext", "DOM"],
"noEmit": true, // Disable emitting output (use esbuild to handle this)
"skipLibCheck": true, // Skip type checking of all declaration files (*.d.ts)
"strict": false, // Disable strict type checks if needed
"moduleResolution": "node",
}
}