/ tsconfig.base.json
tsconfig.base.json
1 { 2 "compilerOptions": { 3 "allowSyntheticDefaultImports": true, 4 "baseUrl": ".", 5 "declaration": false, 6 "emitDecoratorMetadata": true, 7 "experimentalDecorators": true, 8 "esModuleInterop": true, 9 "forceConsistentCasingInFileNames": true, 10 "importHelpers": true, 11 "isolatedModules": true, 12 "lib": ["ES2021", "dom"], 13 "module": "ESNext", 14 "moduleResolution": "node", 15 "rootDir": ".", 16 "skipLibCheck": true, 17 "skipDefaultLibCheck": true, 18 "sourceMap": true, 19 "strict": true, 20 "target": "ES2020", 21 "types": ["node"], 22 "paths": { 23 "@hatsprotocol/config": ["./libs/config/src/index.ts"], 24 "@hatsprotocol/constants": ["./libs/constants/src/index.ts"], 25 "contexts": ["./libs/contexts/src/index.ts"], 26 "forms": ["./libs/forms/src/index.ts"], 27 "hats-hooks": ["./libs/hats-hooks/src/index.ts"], 28 "hats-utils": ["./libs/hats-utils/src/index.ts"], 29 "hooks": ["./libs/hooks/src/index.ts"], 30 "icons": ["./libs/icons/src/index.ts"], 31 "modules-hooks": ["./libs/modules-hooks/src/index.ts"], 32 "modules-ui": ["./libs/modules-ui/src/index.ts"], 33 "molecules": ["./libs/molecules/src/index.ts"], 34 "organisms": ["./libs/organisms/src/index.ts"], 35 "shared": ["./libs/shared/src/index.ts"], 36 "types": ["./libs/types/src/index.ts"], 37 "ui": ["./libs/ui/src/index.ts"], 38 "utils": ["./libs/utils/src/index.ts"] 39 } 40 }, 41 "exclude": ["node_modules", "tmp", "dist", ".nx"] 42 }