mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-13 15:58:50 +00:00
Conflicts: - `app/models/user_settings.rb`: Not a real conflict, upstream added a setting on a line adjacent to a glitch-soc-only line. Added upstream's new setting.
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"target": "esnext",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"types": ["vitest/globals", "@types/webpack-env"],
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
|
|
"paths": {
|
|
"@/*": ["app/javascript/*"],
|
|
"mastodon": ["app/javascript/mastodon"],
|
|
"mastodon/*": ["app/javascript/mastodon/*"],
|
|
"locales": ["app/javascript/locales"],
|
|
"flavours/glitch": ["app/javascript/flavours/glitch"],
|
|
"flavours/glitch/*": ["app/javascript/flavours/glitch/*"],
|
|
"images/*": ["app/javascript/images/*"],
|
|
"styles/*": ["app/javascript/styles/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"vite.config.mts",
|
|
"app/javascript/mastodon",
|
|
"app/javascript/entrypoints",
|
|
"app/javascript/types",
|
|
"app/javascript/flavours/glitch"
|
|
]
|
|
}
|