summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 09afaf5177a53b923e8ccc3cf0f1695dc676dd6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "compilerOptions": {
    "module": "commonjs",
    "target": "es2021",
    "sourceMap": true,
    "rootDirs": ["./src"],
    "esModuleInterop": true,
    "outDir": "./build",
    "skipLibCheck": true
  },
  "exclude": [
    "node_modules"
  ]
}