2018-01-08 13:08:02 +02:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2018-11-09 14:38:25 +01:00
|
|
|
"baseUrl": ".",
|
2019-03-31 09:54:56 +02:00
|
|
|
"incremental": false,
|
2018-12-08 14:30:01 +01:00
|
|
|
"noImplicitAny": true,
|
2019-03-23 17:33:24 +01:00
|
|
|
"experimentalDecorators": true,
|
2019-03-24 00:47:31 +01:00
|
|
|
"emitDecoratorMetadata": true,
|
2018-11-11 22:32:12 +01:00
|
|
|
"jsx": "react",
|
|
|
|
"module": "commonjs",
|
2019-03-31 09:54:56 +02:00
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"skipLibCheck": true,
|
2018-12-17 11:35:39 +01:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2018-01-29 16:07:14 +02:00
|
|
|
"target": "es5",
|
2019-12-20 16:44:16 -08:00
|
|
|
"types": ["jest"],
|
2019-04-20 15:54:27 +02:00
|
|
|
"lib": ["es2017", "dom"]
|
2019-03-30 21:02:40 +01:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"**/dist",
|
|
|
|
"node_modules",
|
|
|
|
"**/node_modules",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/__tests__",
|
|
|
|
"**/*.test.ts"
|
|
|
|
]
|
2019-03-23 17:33:24 +01:00
|
|
|
}
|