mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
61192daff5
This was pretty suspect with the number of clients syncing unnecessarily, it was also really hard to read. It also tests the same thing twice, even if it is a slightly different way. https://github.com/matrix-org/mjolnir/pull/219/files#diff-4e8bbc9dde21b7b895e0c081d2e3375c8958c51a10442497dfffb677f0d59a1aR1-R107
28 lines
726 B
JSON
28 lines
726 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"newLine": "LF",
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"target": "es2015",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "./lib",
|
|
"types": [
|
|
"node",
|
|
"mocha"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./test/integration/manualLaunchScript.ts",
|
|
"./test/integration/roomMembersTest.ts",
|
|
"./test/integration/commands/makedminCommandTest.ts"
|
|
]
|
|
}
|