aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.node.json
blob: cfa2da13ea26c7b9162e867d1b2d0bb56bfee0f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "extends": "./tsconfig.base.json",
  "compilerOptions": {
    "composite": true,
    "lib": ["ES2022"],
    "types": ["node"],
    "emitDeclarationOnly": true,
    "outDir": "build/typescript"
  },
  "include": [
    ".eslintrc.cjs",
    "config/*.ts",
    "config/*.cjs",
    "prettier.config.cjs",
    "types/node",
    "vite.config.ts"
  ],
  "references": [
    { "path": "./tsconfig.shared.json" }
  ]
}