Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations.
at main 573 B view raw
1{ 2 "include": [ 3 "lib/**/*" 4 ], 5 "exclude": [ 6 "node_modules", 7 "dist", 8 "types" 9 ], 10 "compilerOptions": { 11 "allowJs": true, 12 "checkJs": false, 13 "declaration": true, 14 "emitDeclarationOnly": true, 15 "declarationMap": true, 16 "outDir": "types", 17 // or use "declarationDir": "types" 18 19 "target": "ES2022", 20 "lib": [ 21 "ES2022" 22 ], 23 // add "DOM" if you use browser APIs 24 "skipLibCheck": true, 25 "module": "ESNext", 26 "moduleResolution": "Bundler", 27 // or "NodeNext" depending on your setup 28 "rootDir": "lib" 29 } 30}