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