mirror of
https://github.com/ApfelTeeSaft/R2-Explorer.git
synced 2026-08-27 03:43:32 +00:00
* Migrate to biomejs * Cleanup and add workers-ci method * Started refactoring worker into hono + chanfana * Finish api worker refactor * Lint project * Lint project
26 lines
585 B
JSON
26 lines
585 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options: */
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"verbatimModuleSyntax": false,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
/* Strictness */
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
/* If NOT transpiling with TypeScript: */
|
|
"moduleResolution": "Bundler",
|
|
"module": "es2022",
|
|
"noEmit": true,
|
|
/* If your code runs in the DOM: */
|
|
"lib": ["es2022"]
|
|
},
|
|
"include": ["src"]
|
|
}
|