Files
hianime-api/tsconfig.json
2026-03-27 00:33:48 +06:00

26 lines
548 B
JSON

{
"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
}
}