aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/tsconfig.json
diff options
context:
space:
mode:
authorChristian Fehmer <[email protected]>2024-07-16 15:24:06 +0200
committerGitHub <[email protected]>2024-07-16 15:24:06 +0200
commit4c9e949f109ecfbafa5cf30c022eb44374dbea25 (patch)
treee45e903c68ed9e1f66f2f79a1d24b3a7456e068d /frontend/tsconfig.json
parent1838816bff756453290d558ba913ef907cd3dae6 (diff)
downloadmonkeytype-4c9e949f109ecfbafa5cf30c022eb44374dbea25.tar.gz
monkeytype-4c9e949f109ecfbafa5cf30c022eb44374dbea25.zip
impr: use tsrest/zod for type-safety on both ends (@fehmer) (#5479)
!nuf
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r--frontend/tsconfig.json7
1 files changed, 2 insertions, 5 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
index a0b24bb8f..3a9bade94 100644
--- a/frontend/tsconfig.json
+++ b/frontend/tsconfig.json
@@ -31,11 +31,8 @@
"noPropertyAccessFromIndexSignature": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
- "skipLibCheck": false,
- "paths": {
- "@shared/*": ["../shared-types/*"]
- }
+ "skipLibCheck": false
},
- "include": ["./src/**/*.ts", "../shared-types/**/*.d.ts"],
+ "include": ["./src/**/*.ts", "../shared/**/*.d.ts"],
"exclude": ["node_modules", "build", "setup-tests.ts", "**/*.spec.ts"]
}