Weather Station / ECOWITT / DNT
0

Configure Feed

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

at stats 649 B View raw
1{ 2 "compilerOptions": { 3 "target": "ES2017", 4 "lib": ["dom", "dom.iterable", "esnext"], 5 "allowJs": true, 6 "skipLibCheck": true, 7 "strict": true, 8 "noEmit": true, 9 "esModuleInterop": true, 10 "module": "esnext", 11 "moduleResolution": "bundler", 12 "baseUrl": ".", 13 "resolveJsonModule": true, 14 "isolatedModules": true, 15 "jsx": "preserve", 16 "incremental": true, 17 "plugins": [ 18 { 19 "name": "next" 20 } 21 ], 22 "paths": { 23 "@/*": ["./src/*"], 24 "eco": ["./eco.ts"] 25 } 26 }, 27 "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 28 "exclude": ["node_modules"] 29}