marcomaroni-github / twitter-to-bluesky

Import all tweets exported from X/Twitter to a Bluesky account.
Other
499 stars 35 forks source link

Enable "sourceMap" option in tsconfig.json #59

Closed clemensv closed 1 week ago

clemensv commented 1 week ago

For debugging in VSCode it's helpful to enable the "sourceMap" option:

{
  "compilerOptions": {
    "target": "esnext",
    "module": "NodeNext",
    "moduleResolution": "nodenext",
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "noImplicitAny": false,
    "skipLibCheck": true,
    "sourceMap": true,
  },
  "ts-node": {
    "esm": true
  }
}

additionally add

**/*.js.map to .gitignore