mon-entreprise/tsconfig.json

34 lines
992 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "esnext",
"target": "es2019",
"jsx": "react",
"baseUrl": "source",
// We add the `node` types in order to support `process.env` but this is not
// really what we want since our app is client-side and we only have access
// to process.env and not to other NodeJS variables.
"types": ["node"],
"typeRoots": ["source/types/typescript"],
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"Actions/*": ["actions/*"],
"Components": ["components"],
"Components/*": ["components/*"],
"Ui/*": ["components/ui/*"],
"Engine/*": ["engine/*"],
"Images/*": ["images/*"],
"Reducers/*": ["reducers/*"],
"Règles/*": ["règles/*"],
"Selectors/*": ["selectors/*"],
"Types/*": ["types/*"]
}
},
"include": ["source/types/typescript"],
"files": [
"source/sites/mon-entreprise.fr/entry.fr.tsx",
"source/sites/mon-entreprise.fr/entry.en.tsx"
]
}