2022-07-31 10:49:32 +02:00
|
|
|
{
|
2022-10-16 01:19:45 +02:00
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
2024-09-28 14:43:16 +02:00
|
|
|
"module": "ESNext",
|
|
|
|
"types": ["node"],
|
2022-10-16 01:19:45 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2022-07-31 10:49:32 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./lib/",
|
2024-09-28 14:43:16 +02:00
|
|
|
"incremental": true,
|
|
|
|
"sourceMap": true,
|
2022-07-31 10:49:32 +02:00
|
|
|
"noImplicitAny": true,
|
2024-10-04 21:24:11 +02:00
|
|
|
"noImplicitThis": true,
|
2024-09-28 14:43:16 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"declaration": true,
|
2022-07-31 10:49:32 +02:00
|
|
|
"declarationMap": true,
|
|
|
|
"module": "ES6",
|
2024-09-28 14:43:16 +02:00
|
|
|
"target": "ES6",
|
|
|
|
"moduleResolution": "Bundler",
|
2022-07-31 10:49:32 +02:00
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
2024-10-04 21:24:11 +02:00
|
|
|
]
|
2022-07-31 10:49:32 +02:00
|
|
|
}
|
|
|
|
}
|