2019-03-06 09:25:58 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-07-15 13:45:52 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "preserve",
|
2019-05-22 21:43:04 +02:00
|
|
|
"experimentalDecorators": true,
|
2019-07-15 13:45:52 +02:00
|
|
|
"target": "esnext",
|
2020-04-13 15:38:21 +02:00
|
|
|
"downlevelIteration": true,
|
2019-07-23 21:53:59 +02:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"module": "esnext"
|
2019-03-06 09:25:58 +01:00
|
|
|
},
|
2020-04-13 15:38:21 +02:00
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
|
|
|
}
|