mjolnir/tsconfig.json

19 lines
387 B
JSON
Raw Normal View History

2019-09-26 02:13:20 +00:00
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es2015",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "./lib",
"types": [
"node"
]
},
"include": [
"./src/**/*"
]
}