2022-02-22 09:45:31 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
|
|
|
"es2019"
|
|
|
|
],
|
2022-03-14 10:41:45 +01:00
|
|
|
"target": "es2017",
|
2022-02-22 09:45:31 +01:00
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"outDir": "./lib",
|
2022-03-14 09:01:12 +01:00
|
|
|
"rootDir": "./src",
|
|
|
|
"composite": true,
|
2022-02-22 09:45:31 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-03-14 10:41:45 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-02-22 09:45:31 +01:00
|
|
|
"declaration": true
|
|
|
|
},
|
|
|
|
"include": [
|
2022-03-14 10:41:45 +01:00
|
|
|
"src"
|
2022-02-22 09:45:31 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"types",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|