ts-learnings/projects/tsconfig.json

15 lines
276 B
JSON
Raw Permalink Normal View History

2019-03-27 08:31:28 +08:00
{
2019-03-27 17:43:05 +08:00
"include": [
2019-10-30 15:31:19 +08:00
"src/*.ts"
2019-03-27 08:31:28 +08:00
],
"compilerOptions": {
"noImplicitAny": true,
2019-10-28 16:46:32 +08:00
"target": "es2015",
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
}
}