2020-05-08 12:04:00 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "source",
|
2021-05-14 16:14:22 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true,
|
2020-05-08 12:04:00 +02:00
|
|
|
"paths": {
|
|
|
|
"Actions/*": ["actions/*"],
|
|
|
|
"Components": ["components"],
|
|
|
|
"Components/*": ["components/*"],
|
2021-01-27 15:47:30 +01:00
|
|
|
"Images/*": ["static/images/*"],
|
2020-05-08 12:04:00 +02:00
|
|
|
"Reducers/*": ["reducers/*"],
|
|
|
|
"Selectors/*": ["selectors/*"],
|
2021-11-30 16:09:05 +01:00
|
|
|
"Types/*": ["types/*"],
|
2021-12-13 15:16:34 +01:00
|
|
|
"DesignSystem/*": ["design-system/*"],
|
2021-12-07 15:30:02 +01:00
|
|
|
"Data/*": ["data/*"],
|
|
|
|
"Hooks/*": ["hooks/*"],
|
|
|
|
"API/*": ["api/*"]
|
2020-05-15 16:16:13 +02:00
|
|
|
},
|
2021-06-08 12:25:46 +02:00
|
|
|
"typeRoots": ["./types/", "./node_modules/@types"],
|
2020-11-23 15:16:13 +01:00
|
|
|
"noEmit": true,
|
|
|
|
"strict": true
|
2020-05-08 12:04:00 +02:00
|
|
|
},
|
2021-07-21 23:55:08 +02:00
|
|
|
"include": ["source", "test/**/*.ts", "dev-server.js"]
|
2020-05-08 12:04:00 +02:00
|
|
|
}
|