A fullstack app for indexing standard.site documents
at main 17 lines 404 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "ESNext", 5 "moduleResolution": "bundler", 6 "strict": true, 7 "skipLibCheck": true, 8 "lib": ["ES2022"], 9 "types": ["@cloudflare/workers-types"], 10 "noEmit": true, 11 "isolatedModules": true, 12 "esModuleInterop": true, 13 "allowSyntheticDefaultImports": true 14 }, 15 "include": ["src/**/*"], 16 "exclude": ["node_modules"] 17}