~cytrogen/masto-fe

ref: 44ba785242c14bdfcd95854683a69a8451288dba masto-fe/tsconfig.json -rw-r--r-- 498 bytes
44ba7852 — Renaud Chaput Change the hashtag bar to be hidden when there is a CW and the post is not expanded (#26615) 2 years ago
                                                                                
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"
  ]
}