summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: f71ca1dcef9415e6833227c17c74991e97359cd7 (plain)
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
27
{
  "include": [
    "src"
  ],
  "exclude": [
    "**/*.test.ts"
  ],
  "compilerOptions": {
    "module": "esnext",
    "target": "esnext",
    "moduleResolution": "node",
    "allowImportingTsExtensions": true,
    "declaration": true,
    "skipLibCheck": true,
    "rootDir": "src",
    "sourceMap": true,
    "outDir": "dist",
    "strict": true,
    "esModuleInterop": true,
    "lib": [
      "esnext",
    ],
    "types": [
      "vitest/globals"
    ]
  }
}