You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sims-hq/tsconfig.base.json

29 lines
902 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"types": ["node"],
"baseUrl": ".",
"paths": {
"@sims/domain": ["packages/domain/src"],
"@sims/billing-engine": ["packages/billing-engine/src"],
"@sims/config": ["packages/config/src"],
"@sims/auth/permissions": ["packages/auth/src/permissions"],
"@sims/auth": ["packages/auth/src"],
"@sims/scanning": ["packages/scanning/src"],
"@sims/search-core": ["packages/search-core/src"],
"@sims/printing": ["packages/printing/src"],
"@sims/ui": ["packages/ui/src"]
}
}
}