summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 21eeee69af8227d70c404f5a8451cea7bae6fb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "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,
    "lib": ["esnext"],
    "types": ["vitest/globals"]
  }
}