2019-04-15 17:59:30 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"types/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"module": "commonjs",
|
|
|
|
"removeComments": true,
|
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"es2017",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"target": "ESNext",
|
2019-05-19 20:37:39 +02:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"jsx": "preserve"
|
2019-04-15 17:59:30 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2019-05-19 20:37:39 +02:00
|
|
|
"dist",
|
|
|
|
"old_client"
|
2019-04-15 17:59:30 +02:00
|
|
|
]
|
|
|
|
}
|