ts-learnings/tsconfig.json
2019-10-30 15:31:19 +08:00

15 lines
276 B
JSON

{
"include": [
"src/*.ts"
],
"compilerOptions": {
"noImplicitAny": true,
"target": "es2015",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": [
"reflect-metadata"
]
}
}