2021-05-12 16:29:17 +02:00
|
|
|
{
|
2021-05-16 11:22:19 +02:00
|
|
|
"compilerOptions": {
|
2021-05-16 16:42:06 +02:00
|
|
|
"target": "es2020",
|
2021-05-16 11:22:19 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./built/",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"test/**/*",
|
|
|
|
]
|
2021-05-12 16:29:17 +02:00
|
|
|
}
|