File: tsconfig.build-dist-raw.json

package info (click to toggle)
ts-node 10.9.2%2B~cs64.13.20-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,388 kB
  • sloc: javascript: 15,071; sh: 83; makefile: 15; xml: 9
file content (18 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This tsconfig.json is referenced by tsconfig.build-dist.json, a little trick to keep tsc happy.
{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "composite": true,
    "allowJs": true,
    "checkJs": false,
    "noResolve": true,
    "declaration": true,
    "noEmit": false,
    "emitDeclarationOnly": true,
    "rootDir": "dist-raw",
    "outDir": "temp/dist-raw"
  },
  "include": [
    "dist-raw/**/*"
  ]
}