Skip to content

Commit ae9206b

Browse files
authored
Merge pull request #230 from qualcomm/chore/remove-symlink-workaround
chore/remove-symlinks-workaround
2 parents 7567910 + 7d39d7c commit ae9206b

30 files changed

Lines changed: 206 additions & 71 deletions

packages/common/core/tsconfig.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
{
2-
"extends": "@qualcomm-ui/tsconfig/tsconfig.super-strict.json",
32
"compilerOptions": {
43
"baseUrl": "./",
5-
"outDir": "./dist",
64
"paths": {
75
"@qualcomm-ui/core/*": ["./src/*/index.ts"],
8-
// fixes WebStorm usage detection, not used otherwise. TODO: remove when symlinks are fixed
9-
"@qualcomm-ui/utils/*": ["../utils/src/*"]
106
}
117
},
12-
"include": ["./src"],
138
"references": [
149
{
1510
"path": "./tsconfig.lib.json"
@@ -20,9 +15,11 @@
2015
{
2116
"path": "./tsconfig.spec.json"
2217
},
18+
{
19+
"path": "../dom/tsconfig.lib.json"
20+
},
2321
{
2422
"path": "../utils/tsconfig.lib.json"
2523
},
2624
]
2725
}
28-

packages/common/dom/tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"extends": "@qualcomm-ui/tsconfig/tsconfig.super-strict.json",
32
"compilerOptions": {
43
"baseUrl": "./",
5-
"outDir": "./dist",
64
"paths": {
75
"@qualcomm-ui/dom/*": ["./src/*/index.ts"]
86
}
97
},
10-
"include": ["./src"],
118
"references": [
129
{
1310
"path": "./tsconfig.lib.json"
1411
},
1512
{
1613
"path": "./tsconfig.node.json"
14+
},
15+
{
16+
"path": "../utils/tsconfig.lib.json"
1717
}
1818
]
1919
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
{
2-
"files": ["./src/index.ts"],
3-
"extends": "@qualcomm-ui/tsconfig/tsconfig.strict.json",
42
"compilerOptions": {
53
"baseUrl": "./",
6-
"outDir": "./dist",
74
},
85
"references": [
96
{
@@ -14,6 +11,9 @@
1411
},
1512
{
1613
"path": "./tsconfig.spec.json"
14+
},
15+
{
16+
"path": "../typedoc-common/tsconfig.lib.json"
1717
}
1818
]
1919
}

packages/common/mdx-common/tsconfig.lib.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,10 @@
99
"tsBuildInfoFile": "dist/tsbuildinfo"
1010
},
1111
"include": ["./src"],
12-
"exclude": ["./src/tests"]
12+
"exclude": ["./src/**/*.spec.ts"],
13+
"references": [
14+
{
15+
"path": "../typedoc-common/tsconfig.lib.json"
16+
}
17+
]
1318
}
Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
{
2-
"files": ["./src/index.ts"],
3-
"extends": "@qualcomm-ui/tsconfig/tsconfig.strict.json",
42
"compilerOptions": {
53
"baseUrl": "./",
6-
"outDir": "./dist",
74
},
85
"references": [
96
{
@@ -14,6 +11,18 @@
1411
},
1512
{
1613
"path": "./tsconfig.spec.json"
14+
},
15+
{
16+
"path": "../mdx-common/tsconfig.lib.json"
17+
},
18+
{
19+
"path": "../tailwind-plugin/tsconfig.lib.json"
20+
},
21+
{
22+
"path": "../typedoc-common/tsconfig.lib.json"
23+
},
24+
{
25+
"path": "../utils/tsconfig.lib.json"
1726
}
1827
]
1928
}

packages/common/mdx-vite/tsconfig.lib.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@
1313
"references": [
1414
{
1515
"path": "../mdx-common/tsconfig.lib.json"
16+
},
17+
{
18+
"path": "../tailwind-plugin/tsconfig.lib.json"
19+
},
20+
{
21+
"path": "../typedoc-common/tsconfig.lib.json"
22+
},
23+
{
24+
"path": "../utils/tsconfig.lib.json"
1625
}
1726
]
1827
}

packages/common/node-utils/tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
{
2-
"extends": "@qualcomm-ui/tsconfig/tsconfig.super-strict.json",
32
"compilerOptions": {
43
"baseUrl": "./",
5-
"outDir": "./dist",
64
"paths": {
75
"@qualcomm-ui/node-utils/*": ["./src/*/index.ts"]
86
},
97
},
10-
/* required for Webstorm monorepo intellisense */
11-
"include": ["./src"],
128
"references": [
139
{
1410
"path": "./tsconfig.lib.json"

packages/common/qds-core/tsconfig.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
2-
"extends": "@qualcomm-ui/tsconfig/tsconfig.super-strict.json",
32
"compilerOptions": {
43
"baseUrl": "./",
5-
"outDir": "./dist",
64
"paths": {
75
"@qualcomm-ui/qds-core/*": ["./src/*/index.ts"]
86
}
@@ -14,6 +12,12 @@
1412
},
1513
{
1614
"path": "./tsconfig.node.json"
15+
},
16+
{
17+
"path": "../core/tsconfig.lib.json"
18+
},
19+
{
20+
"path": "../utils/tsconfig.lib.json"
1721
}
1822
]
1923
}

packages/common/qds-core/tsconfig.lib.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
"references": [
1616
{
1717
"path": "../core/tsconfig.lib.json"
18+
},
19+
{
20+
"path": "../utils/tsconfig.lib.json"
1821
}
1922
]
2023
}

packages/common/tailwind-plugin/tsconfig.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
{
2-
"extends": "@qualcomm-ui/tsconfig/tsconfig.strict.json",
32
"compilerOptions": {
43
"baseUrl": "./",
5-
"outDir": "./dist"
64
},
7-
"include": [
8-
"./src"
9-
],
105
"references": [
116
{
127
"path": "./tsconfig.lib.json"

0 commit comments

Comments
 (0)