My digital garden
0
fork

Configure Feed

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

at main 22 lines 618 B view raw
1{ 2 "compilerOptions": { 3 "lib": ["esnext", "DOM", "DOM.Iterable"], 4 "experimentalDecorators": true, 5 "module": "esnext", 6 "target": "esnext", 7 "moduleResolution": "node", 8 "strict": true, 9 "incremental": true, 10 "resolveJsonModule": true, 11 "skipLibCheck": true, 12 "allowSyntheticDefaultImports": true, 13 "forceConsistentCasingInFileNames": true, 14 "noUnusedLocals": true, 15 "noUnusedParameters": true, 16 "esModuleInterop": true, 17 "jsx": "react-jsx", 18 "jsxImportSource": "preact" 19 }, 20 "include": ["**/*.ts", "**/*.tsx", "./package.json"], 21 "exclude": ["build/**/*.d.ts"] 22}