mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
e05616b327
A new command `since` to affect all users who have joined a protected room since a given date.
27 lines
664 B
JSON
27 lines
664 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"
|
|
]
|
|
}
|