Skip to content

Instantly share code, notes, and snippets.

@whoisryosuke
Created September 30, 2019 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whoisryosuke/addbc8ceaa2eaad4bd60dc07ef30b31b to your computer and use it in GitHub Desktop.
Save whoisryosuke/addbc8ceaa2eaad4bd60dc07ef30b31b to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"module": "commonjs",
"target": "esnext",
"jsx": "react",
"lib": ["dom", "es2015", "es2017"],
"baseUrl": "./",
"paths": {
"@components/*": ["src/components/*"],
"@forms/*": ["src/forms/*"],
"@api/*": ["src/api/*"],
"@lib/*": ["src/lib/*"],
"@utils/*": ["src/utils/*"],
"@screens/*": ["src/screens/*"],
"@theme": ["src/theme"]
}
},
"include": ["./src/**/*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment