initial commit

This commit is contained in:
RY4N
2026-03-27 00:33:48 +06:00
commit 3a63c75b3a
63 changed files with 6301 additions and 0 deletions

26
tsconfig.json Normal file
View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowJs": true,
"types": [
"bun-types"
],
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"outDir": "./src/assets/js",
"esModuleInterop": true
}
}