mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-07 20:26:15 +00:00
35 lines
924 B
JSON
35 lines
924 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"target": "esnext",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"isolatedModules": true, // Required by Vite
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"types": ["vite/client", "vitest/globals"],
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
|
|
"paths": {
|
|
"@/*": ["app/javascript/*"],
|
|
"mastodon": ["app/javascript/mastodon"],
|
|
"mastodon/*": ["app/javascript/mastodon/*"],
|
|
"images/*": ["app/javascript/images/*"],
|
|
"styles/*": ["app/javascript/styles/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"vite.config.mts",
|
|
"config/vite",
|
|
"app/javascript/mastodon",
|
|
"app/javascript/entrypoints",
|
|
"app/javascript/types"
|
|
]
|
|
}
|