the-honk/challenges/euler/tsconfig.json

14 lines
292 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-03 00:58:31 +00:00
"skipLibCheck": true
2021-10-29 00:00:43 +00:00
},
2022-01-03 00:58:31 +00:00
"files": ["src/**/*.ts"],
"ts-node": {
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc-experimental"
}
2021-10-29 00:00:43 +00:00
}