2023-04-03 11:31:39 +10:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-05-23 18:52:27 +10:00
|
|
|
"jsx": "react-jsx",
|
2023-04-03 11:31:39 +10:00
|
|
|
"target": "esnext",
|
2023-05-09 22:55:35 +10:00
|
|
|
"module": "CommonJS",
|
2023-04-03 11:31:39 +10:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
2024-05-27 19:24:59 +10:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
2023-04-03 11:31:39 +10:00
|
|
|
"esModuleInterop": true,
|
2023-05-08 19:28:36 +10:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"baseUrl": "./",
|
2024-01-12 20:09:57 +11:00
|
|
|
"incremental": true,
|
|
|
|
"tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
|
2023-05-08 19:28:36 +10:00
|
|
|
"paths": {
|
|
|
|
"mastodon": ["app/javascript/mastodon"],
|
2024-01-16 21:27:26 +11:00
|
|
|
"mastodon/*": ["app/javascript/mastodon/*"],
|
2024-02-28 03:07:43 +11:00
|
|
|
"@/*": ["app/javascript/*"]
|
|
|
|
}
|
2023-04-03 11:31:39 +10:00
|
|
|
},
|
2023-05-08 19:28:36 +10:00
|
|
|
"include": [
|
|
|
|
"app/javascript/mastodon",
|
2024-04-24 02:45:12 +10:00
|
|
|
"app/javascript/entrypoints",
|
2024-02-28 03:07:43 +11:00
|
|
|
"app/javascript/types"
|
|
|
|
]
|
2023-04-03 11:31:39 +10:00
|
|
|
}
|