1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/tsconfig.json

22 lines
414 B
JSON
Raw Normal View History

2016-03-12 19:53:19 +08:00
{
"compilerOptions": {
"target": "es5",
2016-03-13 01:11:19 +08:00
"module": "commonjs",
2016-12-27 06:36:38 +08:00
"moduleResolution": "node",
"sourceMap": true,
2016-03-12 19:53:19 +08:00
"emitDecoratorMetadata": true,
2016-12-27 06:36:38 +08:00
"experimentalDecorators": true,
"lib": [
"es2015",
2016-12-28 18:50:05 +08:00
"dom",
"es2015.promise"
2016-12-27 06:36:38 +08:00
],
2016-12-27 23:09:47 +08:00
"suppressImplicitAnyIndexErrors": false,
"typeRoots": [
"./node_modules/@types"
]
},
"exclude": [
2016-12-28 18:50:05 +08:00
"node_modules"
2016-12-27 23:09:47 +08:00
]
}