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.base.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 subprojects/frontend/tsconfig.base.json (limited to 'subprojects/frontend/tsconfig.base.json') diff --git a/subprojects/frontend/tsconfig.base.json b/subprojects/frontend/tsconfig.base.json new file mode 100644 index 00000000..e33e330e --- /dev/null +++ b/subprojects/frontend/tsconfig.base.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "Node", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "noImplicitOverride": true, + "noImplicitReturns": true, + "exactOptionalPropertyTypes": true, + "isolatedModules": true, + "skipLibCheck": true + } +} -- cgit v1.2.3-54-g00ecf