mon-entreprise/site/tsconfig.json

32 lines
819 B
JSON
Raw Normal View History

{
"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/*"],
2021-12-07 14:30:02 +00:00
"Data/*": ["data/*"],
"Hooks/*": ["hooks/*"],
"API/*": ["api/*"]
},
"typeRoots": ["./types/", "./node_modules/@types"],
"noEmit": true,
"strict": true
},
"include": ["source", "test/**/*.ts", "dev-server.js"]
}