mjolnir/tsconfig.json

22 lines
473 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,
2019-09-25 22:13:20 -04:00
"target": "es2015",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "./lib",
"types": [
"node",
"mocha"
2019-09-25 22:13:20 -04:00
]
},
"include": [
"./src/**/*"
]
}