Skip to content
Snippets Groups Projects
tsconfig.sdk.json 981 B
Newer Older
  • Learn to ignore specific revisions
  • {
      "extends": "./tsconfig.base.json",
      "compilerOptions": {
    
        // should make tsc run faster, we may need to delete the buildinfo file if we run into issues
        "incremental": true,
        // so that it doesn't accidentally end up in the distributed package
        "tsBuildInfoFile": "./resources/embedding-sdk/.tsbuildinfo",
    
        "declaration": true,
        "emitDeclarationOnly": true,
        "outDir": "./resources/embedding-sdk/dist",
        "paths": {
    
          "*": ["./frontend/src/*", "./enterprise/frontend/src/*"],
          "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"
      ]