2019-04-27 16:21:53 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2019-08-03 13:58:31 +02:00
|
|
|
"resolveJsonModule": true,
|
2019-04-27 16:21:53 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"es2015",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"jsx": "react"
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./**/*.ts",
|
|
|
|
"./**/*.tsx"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2019-05-21 22:21:57 +02:00
|
|
|
"*node_modules*",
|
2019-04-27 16:21:53 +02:00
|
|
|
"./modules/**/node_modules",
|
|
|
|
"./**/__tests__/*.tsx"
|
|
|
|
]
|
|
|
|
}
|