Skip to content
Snippets Groups Projects
tsconfig.json 498 B
Newer Older
  • Learn to ignore specific revisions
  •     "jsx": "react-jsx",
    
        "module": "CommonJS",
    
        "moduleResolution": "node",
        "allowJs": true,
        "noEmit": true,
        "strict": true,
        "esModuleInterop": true,
    
        "skipLibCheck": true,
        "baseUrl": "./",
        "paths": {
          "mastodon": ["app/javascript/mastodon"],
          "mastodon/*": ["app/javascript/mastodon/*"]
        }
    
      "include": [
        "app/javascript/mastodon",
        "app/javascript/packs",
        "app/javascript/types"
      ]