forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.sdk.json
35 lines (35 loc) · 981 Bytes
/
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
{
"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/*", "./enterprise/frontend/src/*"],
"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"
]
}