nextgraph-test/packages/web/tsconfig.json

24 lines
456 B
JSON
Raw 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": [
"**/*",
"**/.server/**/*",
"**/.client/**/*",
".react-router/types/**/*"
],
"compilerOptions": {
2025-12-23 17:00:29 +01:00
"plugins": [
{
"name": "typescript-plugin-css-modules",
"options": { "classnameTransform": "camelCase" }
}
],
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
}