2019-06-15 22:44:54 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["es6"],
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es5",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"outDir": "build",
|
2019-07-21 23:50:10 +02:00
|
|
|
"declaration": true,
|
2019-06-15 22:44:54 +02:00
|
|
|
"noEmitOnError": true,
|
|
|
|
"strict": true,
|
2019-06-21 19:18:36 +02:00
|
|
|
"incremental": true,
|
2019-08-16 22:35:44 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
"types": []
|
2019-06-15 22:44:54 +02:00
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
}
|