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