2018-06-21 11:59:05 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
//settings:
|
|
|
|
"baseUrl": ".",
|
|
|
|
"inlineSourceMap": true,
|
2018-06-21 14:17:21 +02:00
|
|
|
"module": "commonjs",
|
2018-06-21 11:59:05 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"newLine": "lf",
|
|
|
|
"outDir": "dist",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"node_modules/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"strict": true,
|
2018-06-21 14:17:21 +02:00
|
|
|
"target": "es2017",
|
2018-06-21 11:59:05 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
]
|
|
|
|
}
|