mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-04 17:21:38 +00:00
- move item to it’s own file. - Change tsconfig to use ‘@app’ prefix for imports - move the logic to the legacy-behavior file, allowing to refactor out item type by item type
17 lines
311 B
JSON
17 lines
311 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2022",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@app/*": ["app/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|