The code for darkworld.download darkworld.download
at main 43 lines 864 B view raw
1{ 2 "compilerOptions": { 3 "lib": [ 4 "ESNext", 5 "DOM" 6 ], 7 "target": "ESNext", 8 "module": "Preserve", 9 "moduleDetection": "force", 10 "jsx": "react-jsx", 11 "allowJs": true, 12 "moduleResolution": "bundler", 13 "allowImportingTsExtensions": true, 14 "verbatimModuleSyntax": true, 15 "noEmit": true, 16 "strict": true, 17 "skipLibCheck": true, 18 "noFallthroughCasesInSwitch": true, 19 "noUncheckedIndexedAccess": true, 20 "noImplicitOverride": true, 21 "baseUrl": ".", 22 "paths": { 23 "@/*": [ 24 "./src/*" 25 ] 26 }, 27 "noUnusedLocals": false, 28 "noUnusedParameters": false, 29 "noPropertyAccessFromIndexSignature": false, 30 "types": [ 31 "astro/client" 32 ], 33 "jsxImportSource": "preact" 34 }, 35 "include": [ 36 "src", 37 "astro.config.mjs" 38 ], 39 "exclude": [ 40 "dist", 41 "node_modules" 42 ] 43}