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,
|
2021-12-28 11:56:23 +01:00
|
|
|
"isolatedModules": true,
|
2020-05-08 12:04:00 +02:00
|
|
|
"paths": {
|
|
|
|
"Actions/*": ["actions/*"],
|
|
|
|
"Components": ["components"],
|
|
|
|
"Components/*": ["components/*"],
|
2021-12-28 11:56:23 +01:00
|
|
|
"Images/*": ["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-12-28 11:56:23 +01:00
|
|
|
"types": ["vite/client"],
|
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
|
|
|
},
|
2022-01-28 10:20:54 +01:00
|
|
|
"include": [
|
|
|
|
"source",
|
|
|
|
"test/**/*.ts",
|
|
|
|
"vite.config.ts",
|
|
|
|
"vite-iframe-script.config.ts"
|
|
|
|
]
|
2020-05-08 12:04:00 +02:00
|
|
|
}
|