aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.node.json
blob: 99e4eaca20a611cd742eebd3d04b6586e273a59d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
{
  "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" }
  ]
}