summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 9af4075eff110a8f148852caed026fc3bff2202b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "compilerOptions": {
    "target": "ES5",
    "module": "commonjs",
    "lib": ["ES2015", "ES2020.BigInt", "DOM"],
    "declaration": true,
    "outDir": "./js",
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true, 
    "forceConsistentCasingInFileNames": true
  },
  "include": [
    "ts/**/*.ts"
  ]
}