summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: ff9da29497797f8f870cf9f462ecbced010aaf91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "compilerOptions": {
    "jsx": "react-jsx",
    "target": "esnext",
    "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"
  ]
}