blob: abdf24d08aa5d3d60ae0006eec24dcaa03f33443 [file] [log] [blame]
pineafan17aba6d2022-05-19 20:27:22 +01001{
Skyler Greyaa508242022-08-03 21:42:12 +01002 "extends": "@tsconfig/node16-strictest-esm/tsconfig.json",
pineafan17aba6d2022-05-19 20:27:22 +01003 "compilerOptions": {
4 "module": "esnext",
5 "target": "es2020",
6 "sourceMap": true,
7 "esModuleInterop": true,
8 "outDir": "./dist",
9 "declaration": true,
10 "declarationMap": true,
11 "resolveJsonModule": true,
12 "moduleResolution": "node",
pineafan6702cef2022-06-13 17:52:37 +010013 "skipLibCheck": true
pineafan17aba6d2022-05-19 20:27:22 +010014 },
pineafan41d93562022-07-30 22:10:15 +010015 "include": ["src/**/*", "installer.js"],
pineafan17aba6d2022-05-19 20:27:22 +010016 "exclude": []
Skyler Greyaa508242022-08-03 21:42:12 +010017}