From d22c3b0c257f5daf5b401988a35ab9ce981a2341 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Fri, 12 Aug 2022 19:54:46 +0200 Subject: refactor(frontend): move from Webpack to Vite Also overhaulds the building and linting for frontend assets. --- subprojects/frontend/tsconfig.json | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'subprojects/frontend/tsconfig.json') diff --git a/subprojects/frontend/tsconfig.json b/subprojects/frontend/tsconfig.json index 94c357c5..fcde9939 100644 --- a/subprojects/frontend/tsconfig.json +++ b/subprojects/frontend/tsconfig.json @@ -1,18 +1,17 @@ { + "extends": "./tsconfig.base.json", "compilerOptions": { - "target": "es2020", - "module": "esnext", - "moduleResolution": "node", - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, "jsx": "react", - "strict": true, - "noImplicitOverride": true, - "noImplicitReturns": true, - "exactOptionalPropertyTypes": false, "noEmit": true, - "skipLibCheck": true + "lib": ["DOM", "DOM.Iterable", "ESNext"], + "types": ["vite/client"] }, - "include": ["./src/**/*"], - "exclude": ["./build/generated/sources/lezer/*"] + "include": [ + "src", + "types" + ], + "exclude": ["types/node"], + "references": [ + { "path": "./tsconfig.node.json" } + ] } -- cgit v1.2.3-54-g00ecf