1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/site/tsconfig.json
Maxime Quandalle 7db1a3394e Renomme le répertoire mon-entreprise/ en site/
Pour éviter l'arborescence `mon-entreprise/mon-entreprise` qui prêtait
à confusion
2021-12-02 13:06:45 +01:00

28 lines
744 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/*"]
},
"typeRoots": ["./types/", "./node_modules/@types"],
"noEmit": true,
"strict": true
},
"include": ["source", "test/**/*.ts", "dev-server.js"]
}