summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: cc1f18a9925a85cce7c400688c0b23e6ad15d2df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  "compilerOptions": {
    "jsx": "react-jsx",
    "target": "esnext",
    "module": "CommonJS",
    "moduleResolution": "node",
    "allowJs": true,
    "noEmit": true,
    "strict": true,
    "noImplicitReturns": true,
    "noUncheckedIndexedAccess": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "baseUrl": "./",
    "incremental": true,
    "tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
    "paths": {
      "mastodon": ["app/javascript/mastodon"],
      "mastodon/*": ["app/javascript/mastodon/*"],
      "@/*": ["app/javascript/*"]
    }
  },
  "include": [
    "app/javascript/mastodon",
    "app/javascript/entrypoints",
    "app/javascript/types"
  ]
}