aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.node.json
diff options
context:
space:
mode:
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}