summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: e6c7c8d8b057e3cde436f2f0e060e94426e6658e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "include": ["src/**/*.ts"],
  "compilerOptions": {
    "target": "ES2022",
    "module": "nodenext",
    "moduleResolution": "nodenext",
    "lib": ["ES2022", "dom"],
    "outDir": "dist",
    "strict": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "declaration": true,
    "declarationMap": true
  }
}