32 lines
819 B
JSON
32 lines
819 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "source",
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"paths": {
|
|
"Actions/*": ["actions/*"],
|
|
"Components": ["components"],
|
|
"Components/*": ["components/*"],
|
|
"Images/*": ["static/images/*"],
|
|
"Reducers/*": ["reducers/*"],
|
|
"Selectors/*": ["selectors/*"],
|
|
"Types/*": ["types/*"],
|
|
"DesignSystem/*": ["design-system/*"],
|
|
"Data/*": ["data/*"],
|
|
"Hooks/*": ["hooks/*"],
|
|
"API/*": ["api/*"]
|
|
},
|
|
"typeRoots": ["./types/", "./node_modules/@types"],
|
|
"noEmit": true,
|
|
"strict": true
|
|
},
|
|
"include": ["source", "test/**/*.ts", "dev-server.js"]
|
|
}
|