extremely wip tangled spa
at main 463 B view raw
1{ 2 "compilerOptions": { 3 // General 4 "jsx": "preserve", 5 "jsxImportSource": "solid-js", 6 "target": "ESNext", 7 8 // Modules 9 "allowSyntheticDefaultImports": true, 10 "esModuleInterop": true, 11 "isolatedModules": true, 12 "module": "ESNext", 13 "moduleResolution": "bundler", 14 "noEmit": true, 15 16 // Type Checking & Safety 17 "strict": true, 18 "types": [ 19 "vite/client", 20 "solid-js", 21 "@atcute/tangled", 22 "@atcute/atproto", 23 "@atcute/microcosm" 24 ] 25 } 26}