This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

nanopub / tsconfig.json
582 B 21 lines
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "ES2022", 5 "moduleResolution": "bundler", 6 "lib": ["ES2022"], 7 "types": ["@cloudflare/workers-types"], 8 "strict": true, 9 "esModuleInterop": true, 10 "skipLibCheck": true, 11 "forceConsistentCasingInFileNames": true, 12 "outDir": "dist", 13 "resolveJsonModule": true, 14 "declaration": true, 15 "declarationMap": true, 16 "sourceMap": true, 17 "noEmit": true 18 }, 19 "include": ["src/**/*.ts", "lexicons/**/*.ts", "lexicons/**/*.json"], 20 "exclude": ["node_modules", "dist", "src/lexicon-types"] 21}