deluge-windscribe-ephemeral.../tsconfig.json

23 lines
471 B
JSON
Raw Permalink Normal View History

2021-12-25 20:53:13 +01:00
{
"compilerOptions": {
"lib": [
"es6",
"ES2016",
"ES2018",
],
2022-09-08 01:47:17 +02:00
"target": "ES2017",
"module": "Node16",
"moduleResolution": "Node16",
2021-12-25 20:53:13 +01:00
"outDir": "./dist",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2021-12-26 02:31:37 +01:00
"sourceMap": true,
2022-09-08 01:47:17 +02:00
"skipLibCheck": true, // needed until https://github.com/sindresorhus/got/issues/2051 gets resolved
2021-12-25 20:53:13 +01:00
},
"include": [
"src/**/*"
],
2022-09-08 01:47:17 +02:00
"ts-node": {
"esm": true
},
2021-12-25 20:53:13 +01:00
}