Skip to content

Instantly share code, notes, and snippets.

@rtang03
Created July 18, 2022 09:52
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 rtang03/12edae7ecce0bd6763e2cb14b72543e0 to your computer and use it in GitHub Desktop.
Save rtang03/12edae7ecce0bd6763e2cb14b72543e0 to your computer and use it in GitHub Desktop.
tsconfig
{
"compilerOptions": {
"target": "ES2019",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@components*": [
"src/components*"
],
"@abis*": [
"src/abis*"
],
"@utils*": [
"src/utils*"
],
"@gql*": [
"src/graphql*"
],
"@generated*": [
"src/generated*"
],
"@hooks*": [
"src/hooks*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment