forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 793 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "build",
"paths": {
"*": [
"./frontend/src/*",
"./frontend/test/*",
"./enterprise/frontend/src/*",
"./enterprise/frontend/test/*"
],
"cljs/*": ["./target/cljs_dev/*"]
}
},
"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"
]
}