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