forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.sdk.json
42 lines (42 loc) · 1.06 KB
/
tsconfig.sdk.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"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/*",
"./frontend/test/*",
"./enterprise/frontend/src/*",
"./enterprise/frontend/test/*"
],
"cljs/*": [
"./target/cljs_release/*"
]
},
},
"include": [
"frontend/src/**/*.ts",
"frontend/src/**/*.tsx",
"enterprise/frontend/src/**/*.ts",
"enterprise/frontend/src/**/*.tsx"
],
"exclude": [
"node_modules",
"**/*.unit.spec.*",
"**/mocks/*",
"**/tests/*",
"**/test/*",
"**/__support__/*",
"**/test-utils.ts",
"**/test-utils.tsx",
"**/test-helpers.ts",
"**/testMocks.ts",
"**/*.stories.tsx"
]
}