forked from
j4ck.xyz/tweets2bsky
A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
1{
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "compilerOptions": {
4 "target": "ES2022",
5 "module": "NodeNext",
6 "moduleResolution": "NodeNext",
7 "lib": [
8 "ES2022"
9 ],
10 "types": [
11 "node"
12 ],
13 "outDir": "./dist",
14 "rootDir": "./src",
15 "strict": true,
16 "noUncheckedIndexedAccess": true,
17 "noImplicitReturns": true,
18 "noFallthroughCasesInSwitch": true,
19 "esModuleInterop": true,
20 "allowSyntheticDefaultImports": true,
21 "skipLibCheck": true,
22 "forceConsistentCasingInFileNames": true,
23 "declaration": true,
24 "declarationMap": true,
25 "sourceMap": true
26 },
27 "include": [
28 "src/**/*"
29 ],
30 "exclude": [
31 "node_modules",
32 "dist"
33 ]
34}