2019-10-02 13:35:50 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-10-11 23:50:03 +02:00
|
|
|
"outDir": "./dist/",
|
2019-10-02 13:35:50 +02:00
|
|
|
"target": "esnext",
|
2019-11-15 21:15:43 +01:00
|
|
|
"module": "commonjs",
|
2019-10-11 23:50:03 +02:00
|
|
|
"lib": ["dom", "esnext"],
|
2019-10-13 19:08:36 +02:00
|
|
|
"allowJs": true,
|
2019-11-15 21:15:43 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": true
|
2019-10-02 13:35:50 +02:00
|
|
|
},
|
|
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
2019-10-11 23:50:03 +02:00
|
|
|
"include": ["./src/**/*", "./jest/**/*"]
|
2019-10-02 13:35:50 +02:00
|
|
|
}
|