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