mjolnir/tsconfig.json

24 lines
539 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",
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",
"noImplicitAny": false,
"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/**/*"
]
}