Files
mastodon-sakyey/tsconfig.json

33 lines
862 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-05-23 10:52:27 +02:00
"jsx": "react-jsx",
"target": "esnext",
2023-05-09 14:55:35 +02:00
"module": "CommonJS",
"moduleResolution": "node",
"allowJs": true,
"noEmit": true,
"strict": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
2025-05-07 20:29:02 +02:00
"types": ["vitest/globals", "@types/webpack-env"],
"baseUrl": "./",
2024-01-12 10:09:57 +01:00
"incremental": true,
"tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
"paths": {
2025-05-07 20:29:02 +02:00
"@/*": ["app/javascript/*"],
"mastodon": ["app/javascript/mastodon"],
"mastodon/*": ["app/javascript/mastodon/*"],
2025-05-07 20:29:02 +02:00
"images/*": ["app/javascript/images/*"],
"styles/*": ["app/javascript/styles/*"]
}
},
"include": [
2025-05-07 20:29:02 +02:00
"vite.config.mts",
"app/javascript/mastodon",
"app/javascript/entrypoints",
"app/javascript/types"
]
}