2019-09-25 22:13:20 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-07-22 02:24:12 -04:00
|
|
|
"alwaysStrict": true,
|
2022-11-15 13:03:06 -05:00
|
|
|
"esModuleInterop": true,
|
2019-09-25 22:13:20 -04:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2021-10-07 08:42:08 -04:00
|
|
|
"newLine": "LF",
|
2021-07-22 02:24:12 -04:00
|
|
|
"noImplicitReturns": true,
|
2021-07-22 02:47:41 -04:00
|
|
|
"noUnusedLocals": true,
|
2022-07-26 10:33:43 -04:00
|
|
|
"target": "es2021",
|
2022-02-02 07:43:05 -05:00
|
|
|
"noImplicitAny": true,
|
2019-09-25 22:13:20 -04:00
|
|
|
"sourceMap": true,
|
2021-07-22 02:38:44 -04:00
|
|
|
"strictNullChecks": true,
|
2019-09-25 22:13:20 -04:00
|
|
|
"outDir": "./lib",
|
|
|
|
"types": [
|
2019-11-13 23:38:19 -05:00
|
|
|
"node",
|
|
|
|
"mocha"
|
2019-09-25 22:13:20 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
2022-02-24 09:46:15 -05:00
|
|
|
"./src/**/*",
|
2022-11-28 07:55:43 -05:00
|
|
|
"./test/appservice/**/*",
|
2022-03-21 05:39:15 -04:00
|
|
|
"./test/integration/manualLaunchScript.ts",
|
2022-05-03 07:36:53 -04:00
|
|
|
"./test/integration/roomMembersTest.ts",
|
2022-07-04 10:06:36 -04:00
|
|
|
"./test/integration/banListTest.ts",
|
2022-11-15 07:06:41 -05:00
|
|
|
"./test/integration/reportPollingTest",
|
|
|
|
"./test/integration/policyConsumptionTest.ts",
|
2023-01-05 02:37:54 -05:00
|
|
|
"./test/integration/openMetricsTest.ts",
|
2019-09-25 22:13:20 -04:00
|
|
|
]
|
|
|
|
}
|