summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 74ccc18c2b9e489b7d829a685b9e2122c32083da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "compilerOptions": {
    "target": "es2022",
    "module": "nodenext",
    "moduleResolution": "nodenext",
    "rootDir": "./src",
    "outDir": "dist",
    "esModuleInterop": true,
    "strict": true,
    "skipLibCheck": true,
    "declaration": true
  },
  "include": ["src"],
  "exclude": ["**/*.test.ts"]
}