Skip to content

Instantly share code, notes, and snippets.

@MarlonPassos-git
Created May 2, 2023 20:13
Show Gist options
  • Save MarlonPassos-git/98ffe30b1dbf01f1cfd7a83c62dfb745 to your computer and use it in GitHub Desktop.
Save MarlonPassos-git/98ffe30b1dbf01f1cfd7a83c62dfb745 to your computer and use it in GitHub Desktop.
tsconfig to: nodejs, typescript, ESM, import json files
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022"],
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"outDir": "dist"
},
"include": ["src"],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment