Skip to content

Instantly share code, notes, and snippets.

@critesjosh
Created August 11, 2023 19:44
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 critesjosh/6f3ba19fdc9298b24e90ba4f736247dc to your computer and use it in GitHub Desktop.
Save critesjosh/6f3ba19fdc9298b24e90ba4f736247dc to your computer and use it in GitHub Desktop.
tsconfig for using bb.js, noir and typescript
{
"compilerOptions": {
"target": "es2020",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"noImplicitAny": true,
"strictNullChecks": true,
"incremental": true,
"outDir": "./dist"
},
"exclude": ["dist", "node_modules"],
"include": ["**/*.ts", "**/*.tsx"],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment