Import Instagram archive to a Bluesky account
9
fork

Configure Feed

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

Fix tsconfig error for including files not in the root.

+14 -3
+1 -1
eslint.config.ts
··· 17 17 parserOptions: { 18 18 ecmaVersion: 'latest', 19 19 sourceType: 'module', 20 - project: './tsconfig.json' 20 + project: ['./tsconfig.json', './tsconfig.root.json'] 21 21 }, 22 22 globals: { 23 23 ...globals.node,
+2 -2
tsconfig.json
··· 19 19 "esm": true, 20 20 "require": ["tsconfig-paths/register"] 21 21 }, 22 - "include": ["src/**/*", "jest.config.ts", "eslint.config.ts"], 23 - "exclude": ["node_modules", "**/*test.ts"] 22 + "include": ["src/**/*"], 23 + "exclude": ["node_modules", "**/*test.ts", "tsconfig"] 24 24 }
+11
tsconfig.root.json
··· 1 + { 2 + "compilerOptions": { 3 + "target": "esnext", 4 + "module": "NodeNext", 5 + "moduleResolution": "nodenext", 6 + "allowSyntheticDefaultImports": true, 7 + "esModuleInterop": true, 8 + "strict": true 9 + }, 10 + "include": ["eslint.config.ts", "jest.config.ts"] 11 + }