Skip to content
Snippets Groups Projects
tsconfig.json 793 B
Newer Older
  "extends": "./tsconfig.base.json",
  "compilerOptions": {
    "outDir": "build",
    "paths": {
      "*": [
        "./frontend/src/*",
        "./frontend/test/*",
        "./enterprise/frontend/src/*",
        "./enterprise/frontend/test/*"
    "frontend/src/**/*",
    "enterprise/frontend/src/**/*",
    "frontend/test/**/*",
    "enterprise/frontend/test/**/*"
  "exclude": [
    "node_modules",
    // The following files will load `frontend/src/metabase/app` which will conflict with
    // `frontend/src/metabase/App.tsx`, since now we're loading both JS and TS files.
    "frontend/src/metabase/app-main.js",
    "frontend/src/metabase/app-public.js",
    "frontend/src/metabase/app-embed.js"
  ]