the-honk/challenges/euler/tsconfig.json

15 lines
322 B
JSON
Raw Normal View History

2021-10-29 00:00:43 +00:00
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
2021-10-30 13:36:11 +00:00
"outDir": "build",
2022-01-08 19:15:34 +00:00
"esModuleInterop": true,
"allowJs": true
2021-10-29 00:00:43 +00:00
},
"include": ["src/**/*.ts"],
2022-01-03 00:58:31 +00:00
"ts-node": {
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc-experimental"
}
2021-10-29 00:00:43 +00:00
}