mjolnir/tsconfig.json

29 lines
770 B
JSON
Raw Normal View History

2019-09-25 22:13:20 -04:00
{
"compilerOptions": {
2021-07-22 02:24:12 -04:00
"alwaysStrict": true,
2019-09-25 22:13:20 -04:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"moduleResolution": "node",
"newLine": "LF",
2021-07-22 02:24:12 -04:00
"noImplicitReturns": true,
2021-07-22 02:47:41 -04:00
"noUnusedLocals": true,
2019-09-25 22:13:20 -04:00
"target": "es2015",
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": [
"node",
"mocha"
2019-09-25 22:13:20 -04:00
]
},
"include": [
"./src/**/*",
"./test/integration/manualLaunchScript.ts",
"./test/integration/roomMembersTest.ts",
"./test/integration/commands/makedminCommandTest.ts"
"./test/integration/banListTest.ts"
2019-09-25 22:13:20 -04:00
]
}