1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-11-24 08:42:24 +02:00
pigallery2/tsconfig.json

21 lines
383 B
JSON
Raw Normal View History

2016-03-12 13:53:19 +02:00
{
"compileOnSave": true,
2016-03-12 13:53:19 +02:00
"compilerOptions": {
2018-11-29 00:49:33 +02:00
"noImplicitAny": true,
2019-07-27 22:56:12 +02:00
"module": "commonjs",
2016-12-27 00:36:38 +02:00
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
2016-03-12 13:53:19 +02:00
"emitDecoratorMetadata": true,
2016-12-27 00:36:38 +02:00
"experimentalDecorators": true,
2019-07-27 22:56:12 +02:00
"target": "es6",
"typeRoots": [
"node_modules/@types"
],
2016-12-27 00:36:38 +02:00
"lib": [
2018-03-30 21:30:30 +02:00
"es2017",
"dom"
2016-12-27 17:09:47 +02:00
]
}
}