Ionosphere.tv
3
fork

Configure Feed

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

chore: initialize pnpm workspace

+40
+10
.gitignore
··· 1 + node_modules/ 2 + dist/ 3 + .next/ 4 + data/audio/ 5 + data/transcripts/ 6 + *.sqlite 7 + *.sqlite-journal 8 + *.sqlite-wal 9 + .env 10 + .env.local
+10
package.json
··· 1 + { 2 + "name": "ionosphere-workspace", 3 + "private": true, 4 + "scripts": { 5 + "dev": "pnpm --filter ionosphere dev", 6 + "build": "pnpm --filter ionosphere build", 7 + "appview": "pnpm --filter ionosphere-appview appview" 8 + }, 9 + "devDependencies": {} 10 + }
+3
pnpm-workspace.yaml
··· 1 + packages: 2 + - 'apps/*' 3 + - 'formats/*'
+17
tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + "target": "ES2022", 4 + "module": "ESNext", 5 + "moduleResolution": "bundler", 6 + "strict": true, 7 + "esModuleInterop": true, 8 + "skipLibCheck": true, 9 + "forceConsistentCasingInFileNames": true, 10 + "resolveJsonModule": true, 11 + "declaration": true, 12 + "declarationMap": true, 13 + "sourceMap": true, 14 + "outDir": "dist" 15 + }, 16 + "exclude": ["node_modules", "dist"] 17 + }