2022-07-31 10:49:32 +02:00
|
|
|
{
|
2022-10-16 01:19:45 +02:00
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "CommonJS"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2022-07-31 10:49:32 +02:00
|
|
|
"files": ["src/index.ts"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./lib/",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"module": "ES6",
|
|
|
|
"moduleResolution": "Node",
|
2022-10-16 01:19:45 +02:00
|
|
|
"target": "ES6",
|
2022-07-31 10:49:32 +02:00
|
|
|
|
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|