mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
c8caf744c5
* Apply members and server bans to the most recently active rooms first. https://github.com/matrix-org/mjolnir/issues/273
28 lines
709 B
JSON
28 lines
709 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/banListTest.ts"
|
|
]
|
|
}
|