1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/tsconfig.json

22 lines
406 B
JSON
Raw Normal View History

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