| 12345678910111213141516171819202122232425262728293031 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "useDefineForClassFields": true,
- "module": "ESNext",
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
- "skipLibCheck": true,
- /* Bundler mode */
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- /* Linting */
- "strict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true,
- /* Path aliases */
- "baseUrl": ".",
- "paths": {
- "@smartcut/types": ["packages/types/src"],
- "@smartcut/api-client": ["packages/api-client/src"],
- "@smartcut/shared-utils": ["packages/shared-utils/src"],
- "@smartcut/shared-components": ["packages/shared-components/src"]
- }
- }
- }
|