Created
August 11, 2023 19:44
-
-
Save critesjosh/6f3ba19fdc9298b24e90ba4f736247dc to your computer and use it in GitHub Desktop.
tsconfig for using bb.js, noir and typescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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