diff options
author | Jack <[email protected]> | 2024-02-22 02:24:20 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-22 02:24:20 +0100 |
commit | 8f6bfbb70824c60a7f6df60a932468bfb3f08887 (patch) | |
tree | 3e1802f0ddc067982d874536ee9d8810fee97fc3 /frontend/tsconfig.json | |
parent | c29220323ba0a4a1cbde24ab60f9eae7e462b587 (diff) | |
download | monkeytype-8f6bfbb70824c60a7f6df60a932468bfb3f08887.tar.gz monkeytype-8f6bfbb70824c60a7f6df60a932468bfb3f08887.zip |
build: replace webpack with vite (#5096)
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r-- | frontend/tsconfig.json | 5 |
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, |