Skip to content

Instantly share code, notes, and snippets.

@callstack-bot
Created October 7, 2022 12:12
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 callstack-bot/8d9d72255b264de2fe5982e6875b1ee5 to your computer and use it in GitHub Desktop.
Save callstack-bot/8d9d72255b264de2fe5982e6875b1ee5 to your computer and use it in GitHub Desktop.
// packages/shared/tsconfig.json
{
"compilerOptions": {
"target": "es6",
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
"outDir": "dist", // <- Directory of generated output
"moduleResolution": "node",
"resolveJsonModule": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"declaration": true,
"jsx": "react"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment