mjolnir/tsconfig.json

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