Skip to content

Instantly share code, notes, and snippets.

@MohammedALREAI
Created August 7, 2021 15:44
Show Gist options
  • Select an option

  • Save MohammedALREAI/fc9197399acb6edacce36041e9b2f4d1 to your computer and use it in GitHub Desktop.

Select an option

Save MohammedALREAI/fc9197399acb6edacce36041e9b2f4d1 to your computer and use it in GitHub Desktop.
mm
{
"compilerOptions": {
"outDir": "./lib",
"target": "es5",
"module": "esnext",
"baseUrl": ".",
"paths": {
"*": ["src/*"],
"@layout":["src/layout/*"],
"@hock":["src/hooks/*"],
"@routes":["src/routes/*"],
"@store":["src/store/*"],
"@theme":["src/themes/*"],
"@utils":["src/utils/*"],
"@views":["src/views/*"]
},
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"noUnusedLocals": false,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noImplicitAny": false,
"noImplicitThis": true,
"strictNullChecks": true,
"declaration": false,
"sourceMap": true,
"types": [
"node",
"webpack-env"
],
"typeRoots": [
"index.d.ts",
"types",
"/**.d.ts"
],
"downlevelIteration": true
},
"include": [
"src",
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx"
],
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment