the-honk/euler/tsconfig.json

14 lines
292 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:37 +00:00
"skipLibCheck": true
2024-10-09 17:02:34 +00:00
},
2024-10-09 17:02:37 +00:00
"files": ["src/**/*.ts"],
"ts-node": {
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc-experimental"
}
2024-10-09 17:02:34 +00:00
}