mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-16 03:43:08 +00:00
8b568755ad
Conflicts: - `tsconfig.json`: Upstream changed the config to properly process imports. Glitch-soc had previously already done so. Changed the config to better match upstream.
25 lines
539 B
JSON
25 lines
539 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"*": ["app/javascript/*"],
|
|
"mastodon": ["app/javascript/mastodon"],
|
|
"mastodon/*": ["app/javascript/mastodon/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"app/javascript/mastodon",
|
|
"app/javascript/packs",
|
|
"app/javascript/types",
|
|
"app/javascript/flavours/glitch"
|
|
]
|
|
}
|