mjolnir/tsconfig.json

28 lines
709 B
JSON
Raw Normal View History

2019-09-26 02:13:20 +00:00
{
"compilerOptions": {
2021-07-22 06:24:12 +00:00
"alwaysStrict": true,
2019-09-26 02:13:20 +00:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"moduleResolution": "node",
"newLine": "LF",
2021-07-22 06:24:12 +00:00
"noImplicitReturns": true,
2021-07-22 06:47:41 +00:00
"noUnusedLocals": true,
2019-09-26 02:13:20 +00:00
"target": "es2015",
2022-02-02 12:43:05 +00:00
"noImplicitAny": true,
2019-09-26 02:13:20 +00:00
"sourceMap": true,
2021-07-22 06:38:44 +00:00
"strictNullChecks": true,
2019-09-26 02:13:20 +00:00
"outDir": "./lib",
"types": [
"node",
"mocha"
2019-09-26 02:13:20 +00:00
]
},
"include": [
"./src/**/*",
"./test/integration/manualLaunchScript.ts",
"./test/integration/roomMembersTest.ts",
"./test/integration/banListTest.ts"
2019-09-26 02:13:20 +00:00
]
}