mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
18 lines
195 B
JavaScript
18 lines
195 B
JavaScript
module.exports = {
|
|
extension: [
|
|
".ts"
|
|
],
|
|
exclude: [
|
|
"**/*.d.ts",
|
|
"test/**",
|
|
"/*.js"
|
|
],
|
|
require: [
|
|
"ts-node/register"
|
|
],
|
|
reporter: [
|
|
"html",
|
|
"text"
|
|
]
|
|
}
|