-
metabase-bot[bot] authored
Previously, JS files isn't picked up by VS Code, so they'll have limited intellisence. Also, Jest and Cypress has conflicting names e.g. `describe` or `expect`. So, this commit attempt to resolve that as well. Co-authored-by:
Mahatthana (Kelvin) Nomsawadi <me@bboykelvin.dev>
metabase-bot[bot] authoredPreviously, JS files isn't picked up by VS Code, so they'll have limited intellisence. Also, Jest and Cypress has conflicting names e.g. `describe` or `expect`. So, this commit attempt to resolve that as well. Co-authored-by:
Mahatthana (Kelvin) Nomsawadi <me@bboykelvin.dev>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
tsconfig.json 729 B
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"paths": {
"*": [
"./frontend/src/*",
"./frontend/test/*",
"./enterprise/frontend/src/*",
"./enterprise/frontend/test/*"
]
}
},
"include": [
"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"
]
}