Skip to content

Instantly share code, notes, and snippets.

@Developerayo
Created August 6, 2023 11:36
Show Gist options
  • Save Developerayo/7c8b152582c64fa80cf7ff592223abba to your computer and use it in GitHub Desktop.
Save Developerayo/7c8b152582c64fa80cf7ff592223abba to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"jsx": "react",
"target": "es5",
"module": "commonjs",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": ".",
"paths": {
"Src/*": ["src"],
"Components/*": ["src/components/*"],
"Constants/*": ["src/constants/*"],
"Hooks/*": ["src/hooks/*"],
"Images/*": ["src/images/*"],
"Layouts/*": ["src/layouts/*"],
"Pages/*": ["src/pages/*"],
"Posts/*": ["src/posts/*"],
"Stores/*": ["src/stores/*"],
"Styles/*": ["src/styles/*"],
"Templates/*": ["src/templates/*"],
"Types/*": ["src/types/*"],
"Utils/*": ["src/utils/*"]
},
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment