A location based messaging app built on ATProto.
1
fork

Configure Feed

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

at main 29 lines 501 B view raw
1{ 2 "compilerOptions": { 3 "target": "ESNext", 4 "module": "CommonJS", 5 "baseUrl": ".", 6 "paths": { 7 "#/*": [ 8 "src/*" 9 ] 10 }, 11 "moduleResolution": "Node10", 12 "outDir": "dist", 13 "importsNotUsedAsValues": "remove", 14 "strict": true, 15 "esModuleInterop": true, 16 "skipLibCheck": true, 17 "forceConsistentCasingInFileNames": true, 18 "types": [ 19 "node", 20 "jest" 21 ], 22 }, 23 "include": [ 24 "src/**/*" 25 ], 26 "exclude": [ 27 "node_modules" 28 ] 29}