Sage100/tsconfig.json
2026-01-20 11:04:04 +03:00

18 lines
353 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"jsx": "react-jsx",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": false,
"strict": true,
"baseUrl": "src",
"paths": {
"@/*": ["*"]
}
},
"include": ["src"]
}