dev (#160)
Some checks failed
continuous-integration/drone/push Build is failing

Co-authored-by: sora-ext
Co-authored-by: soraefir
Reviewed-on: #160
This commit is contained in:
2025-03-02 01:09:29 +01:00
parent 977751d517
commit aee79aac75
67 changed files with 6060 additions and 5661 deletions

17
tsconfig-client.json Normal file
View File

@ -0,0 +1,17 @@
{
"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",
}
}