aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: 8c06084889a6e9d99b9ab1446b57c971eb5d8a52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * SPDX-FileCopyrightText: 2024 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",
    "prettier.config.cjs",
    "scripts/*.cjs"
  ]
}