2020-03-09 17:57:39 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-12-13 02:22:21 +01:00
|
|
|
"lib": ["ES2019", "DOM"],
|
2021-05-30 22:01:11 +02:00
|
|
|
"target": "es2018",
|
2021-09-20 04:04:34 +02:00
|
|
|
"module": "ES2020",
|
2021-05-30 22:01:11 +02:00
|
|
|
"moduleResolution": "node",
|
2020-03-09 17:57:39 +01:00
|
|
|
"declaration": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"declarationDir": "dts",
|
|
|
|
"strict": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"esModuleInterop": true,
|
2021-12-14 02:11:14 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true
|
2020-03-09 17:57:39 +01:00
|
|
|
},
|
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|