react-vite-typesafe/packages/web/tsconfig.json

27 lines
494 B
JSON
Raw Permalink Normal View History

2024-10-19 21:05:52 +02:00
{
"files": [],
"extends": "../../tsconfig.base.json",
2025-12-23 16:30:04 +01:00
"include": [
2025-12-26 14:12:06 +01:00
"app/**/*",
"*.ts",
2025-12-23 16:30:04 +01:00
"**/.server/**/*",
"**/.client/**/*",
".react-router/types/**/*"
],
"compilerOptions": {
2025-12-23 17:00:29 +01:00
"plugins": [
{
"name": "typescript-plugin-css-modules",
2025-12-26 13:54:09 +01:00
"options": {
2025-12-26 14:12:06 +01:00
"classnameTransform": "camelCaseOnly"
2025-12-26 13:54:09 +01:00
}
2025-12-23 17:00:29 +01:00
}
],
2025-12-23 16:30:04 +01:00
"rootDirs": [".", "./.react-router/types"],
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
2025-12-23 17:00:29 +01:00
}
2025-12-23 16:30:04 +01:00
}
2024-10-19 21:05:52 +02:00
}