summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 8f386d743d40eb67f3506a5b94b125eb333e252b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "include": ["src"],
  "compilerOptions": {
    "module": "NodeNext",
    "target": "esnext",
    "moduleResolution": "nodenext",
    "allowImportingTsExtensions": true,
    "noEmit": true,
    "declaration": true,
    "skipLibCheck": true,
    "rootDir": "src",
    "sourceMap": true,
    "outDir": "dist",
    "strict": true,
    "esModuleInterop": true,
    "exactOptionalPropertyTypes": true,
    "lib": [
      "esnext",
      "webworker"
    ],
    "types": ["vitest/globals"]
  }
}