creates video voice memos from audio clips; with bluesky integration. trill.ptr.pet
at main 510 B view raw
1{ 2 "include": ["src", "styled-system"], 3 "compilerOptions": { 4 // General 5 "jsx": "preserve", 6 "jsxImportSource": "solid-js", 7 "target": "ESNext", 8 9 // Modules 10 "allowSyntheticDefaultImports": true, 11 "esModuleInterop": true, 12 "isolatedModules": true, 13 "module": "ESNext", 14 "moduleResolution": "bundler", 15 "noEmit": true, 16 17 // Type Checking & Safety 18 "strict": true, 19 "types": ["vite/client"], 20 21 "baseUrl": ".", 22 "paths": { 23 "~/*": ["./src/*"] 24 } 25 } 26}