This repository has been archived on 2026-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
factuges_2025/modules/invoices/tsconfig.json

25 lines
495 B
JSON
Raw Normal View History

2025-04-27 20:47:47 +00:00
{
"compilerOptions": {
2025-05-01 17:14:48 +00:00
"target": "es2022",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2025-04-27 20:47:47 +00:00
"baseUrl": "./",
"paths": {
"#/*": ["./src/*"]
}
},
2025-05-01 17:14:48 +00:00
"include": ["./src"]
2025-04-27 20:47:47 +00:00
}