Skip to content

Commit

Permalink
add ts-node config
Browse files Browse the repository at this point in the history
  • Loading branch information
JeelRajodiya committed Nov 21, 2024
1 parent a05df3f commit 8cb082b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "types/**/*.d.ts", "**/*.json"],
"exclude": ["node_modules", "netlify"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"types/**/*.d.ts",
"**/*.json"
],
"exclude": ["node_modules", "netlify"],
"include": ["scripts/**/*"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true
}
}

0 comments on commit 8cb082b

Please sign in to comment.