aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.node.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-08-12 19:54:46 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-08-12 19:54:46 +0200
commitd22c3b0c257f5daf5b401988a35ab9ce981a2341 (patch)
tree0a661c927c37b52197326d1c05e211daf9bd19e5 /subprojects/frontend/tsconfig.node.json
parentfix(language): rule parsing test (diff)
downloadrefinery-d22c3b0c257f5daf5b401988a35ab9ce981a2341.tar.gz
refinery-d22c3b0c257f5daf5b401988a35ab9ce981a2341.tar.zst
refinery-d22c3b0c257f5daf5b401988a35ab9ce981a2341.zip
refactor(frontend): move from Webpack to Vite
Also overhaulds the building and linting for frontend assets.
Diffstat (limited to 'subprojects/frontend/tsconfig.node.json')
-rw-r--r--subprojects/frontend/tsconfig.node.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/subprojects/frontend/tsconfig.node.json b/subprojects/frontend/tsconfig.node.json
new file mode 100644
index 00000000..f5d6e6ec
--- /dev/null
+++ b/subprojects/frontend/tsconfig.node.json
@@ -0,0 +1,17 @@
1{
2 "extends": "./tsconfig.base.json",
3 "compilerOptions": {
4 "composite": true,
5 "checkJs": true,
6 "lib": ["ESNext"],
7 "types": ["node"],
8 "emitDeclarationOnly": true,
9 "outDir": "build/typescript"
10 },
11 "include": [
12 ".eslintrc.cjs",
13 "prettier.config.cjs",
14 "types/node",
15 "vite.config.ts"
16 ]
17}