Skip to content
Snippets Groups Projects
tsconfig.sdk.json 813 B
Newer Older
{
  "extends": "./tsconfig.base.json",
  "compilerOptions": {
    "declaration": true,
    "emitDeclarationOnly": true,
    "outDir": "./resources/embedding-sdk/dist",
    "paths": {
      "*": [
        "./frontend/src/*",
        "./frontend/test/*",
        "./enterprise/frontend/src/*",
        "./enterprise/frontend/test/*"
      ],
      "cljs/*": ["./target/cljs_release/*"]
    "frontend/src/**/*.ts",
    "frontend/src/**/*.tsx",
    "enterprise/frontend/src/**/*.ts",
    "enterprise/frontend/src/**/*.tsx"
  ],
  "exclude": [
    "node_modules",
    "**/*.unit.spec.*",
    "**/mocks/*",
    "**/tests/*",
    "**/test/*",
    "**/test-utils.ts",
    "**/test-utils.tsx",
    "**/test-helpers.ts",
    "**/testMocks.ts",
    "**/*.stories.tsx"
  ]
}