nextgraph-test/packages/web/tsconfig.json

23 lines
456 B
JSON

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