ts-learnings/tsconfig.json
2019-03-28 17:15:58 +08:00

16 lines
300 B
JSON

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