aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/tsconfig.json
diff options
context:
space:
mode:
authorJack <[email protected]>2024-02-22 02:24:20 +0100
committerGitHub <[email protected]>2024-02-22 02:24:20 +0100
commit8f6bfbb70824c60a7f6df60a932468bfb3f08887 (patch)
tree3e1802f0ddc067982d874536ee9d8810fee97fc3 /frontend/tsconfig.json
parentc29220323ba0a4a1cbde24ab60f9eae7e462b587 (diff)
downloadmonkeytype-8f6bfbb70824c60a7f6df60a932468bfb3f08887.tar.gz
monkeytype-8f6bfbb70824c60a7f6df60a932468bfb3f08887.zip
build: replace webpack with vite (#5096)
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r--frontend/tsconfig.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
index 89c82b9e6..6894afabf 100644
--- a/frontend/tsconfig.json
+++ b/frontend/tsconfig.json
@@ -2,9 +2,9 @@
"compilerOptions": {
"target": "ES6",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
- "module": "CommonJS",
+ "module": "ESNext",
"moduleResolution": "node",
- "types": ["node", "jest"],
+ "types": ["vite/client", "node", "jest", "jquery"],
"allowUmdGlobalAccess": true,
"resolveJsonModule": true,
"outDir": "./build",
@@ -12,6 +12,7 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
+ "noEmit": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,