Skip to content
Snippets Groups Projects
jsconfig.json 440 B
{
  "include": [
    "frontend/src/**/*",
    "enterprise/frontend/src/**/*",
    "frontend/test/**/*",
    "enterprise/frontend/test/**/*"
  ],
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "*": [
        "./frontend/src/*",
        "./frontend/test/*",
        "./enterprise/frontend/src/*",
        "./enterprise/frontend/test/*"
      ]
    },
    "experimentalDecorators": true,
    "strictBindCallApply": true
  }
}