summaryrefslogtreecommitdiff
path: root/tsconfig.cli.json
blob: 4efc99c071df1206983550544807920f0a32ffea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "compilerOptions": {
    "composite": true,
    "module": "ESNext",
    "moduleResolution": "bundler",
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "outDir": "./out/cli",
    "rootDir": "./src",
    "resolveJsonModule": true,
    "skipLibCheck": true,
    "strict": true,
    "target": "ESNext",
    "types": ["node"],
    "declaration": true,
    "declarationDir": "./out/cli/types"
  },
  "include": [
    "src/cli/**/*",
    "src/main/overleafProtocol.ts"
  ]
}