GildedRose-Refactoring-Kata/TypeScript/tsconfig.json
Arno Chauveau f35d2e9c84 Introduce improved file structure, move update logic to legacyBehavior class
- 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
2025-07-24 11:49:26 +02:00

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"]
}