nextgraph-test/packages/web/tsconfig.json
2025-12-26 14:21:44 +01:00

26 lines
494 B
JSON

{
"files": [],
"extends": "../../tsconfig.base.json",
"include": [
"app/**/*",
"*.ts",
"**/.server/**/*",
"**/.client/**/*",
".react-router/types/**/*"
],
"compilerOptions": {
"plugins": [
{
"name": "typescript-plugin-css-modules",
"options": {
"classnameTransform": "camelCaseOnly"
}
}
],
"rootDirs": [".", "./.react-router/types"],
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
}
}
}