mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
25 lines
563 B
JSON
25 lines
563 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/**/*"
|
|
]
|
|
}
|