the-honk/challenges/euler/tsconfig.json
2022-04-08 16:57:51 +01:00

14 lines
325 B
JSON

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