the-honk/challenges/euler/tsconfig.json

15 lines
322 B
JSON
Raw Normal View History

2024-10-09 17:02:34 +00:00
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
2024-10-09 17:02:36 +00:00
"outDir": "build",
2024-10-09 17:02:40 +00:00
"esModuleInterop": true,
"allowJs": true
2024-10-09 17:02:34 +00:00
},
"include": ["src/**/*.ts"],
2024-10-09 17:02:37 +00:00
"ts-node": {
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc-experimental"
}
2024-10-09 17:02:34 +00:00
}