ts-learnings/tsconfig.json

16 lines
300 B
JSON
Raw Normal View History

2019-03-27 08:31:28 +08:00
{
2019-03-27 17:43:05 +08:00
"include": [
"src/*.ts"
2019-03-27 08:31:28 +08:00
],
"compilerOptions": {
"noImplicitAny": true,
"target": "es5",
2019-03-27 12:02:55 +08:00
"outDir": "dist/",
2019-03-27 16:51:18 +08:00
"experimentalDecorators": true,
2019-03-28 17:15:58 +08:00
"emitDecoratorMetadata": true,
2019-03-27 16:51:18 +08:00
"types": [
"reflect-metadata"
]
2019-03-27 08:31:28 +08:00
}
}