forked from mastodon/mastodon
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
37 lines (37 loc) · 847 Bytes
/
tsconfig.json
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
29
30
31
32
33
34
35
36
37
{
"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",
"resolveJsonModule": true,
"paths": {
"mastodon": [
"app/javascript/mastodon"
],
"mastodon/*": [
"app/javascript/mastodon/*"
],
"@/*": [
"app/javascript/*"
]
}
},
"include": [
"app/javascript/mastodon",
"app/javascript/entrypoints",
"app/javascript/types",
"app/javascript/custom/ui/location_selector.jsx",
"postcss.config.js"
]
}