2020-12-03 09:54:27 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
2022-08-08 15:52:56 +02:00
|
|
|
"outDir": "./dist",
|
2020-12-03 09:54:27 +01:00
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-12-28 14:53:14 +01:00
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true
|
2021-01-05 17:06:35 +01:00
|
|
|
},
|
2022-08-08 15:52:56 +02:00
|
|
|
"include": [
|
|
|
|
"lib/**/*.ts",
|
|
|
|
"test/**/*.ts"
|
|
|
|
]
|
2020-12-03 09:54:27 +01:00
|
|
|
}
|