ts-learnings/_book/tsconfig.json
2019-04-04 16:11:16 +08:00

16 lines
300 B
JSON

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