the-honk/challenges/euler/tsconfig.json
2024-10-09 18:02:40 +01:00

14 lines
322 B
JSON

{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"outDir": "build",
"esModuleInterop": true,
"allowJs": true
},
"include": ["src/**/*.ts"],
"ts-node": {
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc-experimental"
}
}