2020-05-07 08:03:30 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-06-30 11:28:49 +02:00
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["dom", "es2017"],
|
2020-05-07 08:03:30 +02:00
|
|
|
"resolveJsonModule": true,
|
2020-06-30 13:32:16 +02:00
|
|
|
"moduleResolution": "Node",
|
2020-06-30 11:28:49 +02:00
|
|
|
"jsx": "react",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": true,
|
2020-07-08 15:15:02 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowJs": true
|
2020-05-07 08:03:30 +02:00
|
|
|
},
|
2020-06-30 11:28:49 +02:00
|
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
2020-07-08 15:15:02 +02:00
|
|
|
"include": ["./src/**/*", "./api/**/*", "./tests/**/*", "./app.config.js"]
|
2020-05-07 08:03:30 +02:00
|
|
|
}
|