mon-entreprise/mon-entreprise/tsconfig.json

27 lines
669 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/*"]
},
"noEmit": true,
"strict": true
},
"include": ["types", "source", "test/persistence.test.ts", "dev-server.js"]
}