Skip to content

Commit de16b66

Browse files
authored
Merge pull request #302 from qualcomm/dev
tsconfig docs and package updates
2 parents db2775e + 2a04dd3 commit de16b66

120 files changed

Lines changed: 1904 additions & 1469 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
"@qualcomm-ui/eslint-config-mdx": "workspace:*",
7070
"@qualcomm-ui/eslint-config-react": "workspace:*",
7171
"@qualcomm-ui/eslint-config-typescript": "workspace:*",
72-
"@qualcomm-ui/eslint-plugin-angular": "workspace:*",
7372
"@qualcomm-ui/eslint-plugin-path-alias": "workspace:*",
73+
"@qualcomm-ui/eslint-plugin-angular": "workspace:*",
7474
"@qualcomm-ui/eslint-plugin-react": "workspace:*",
7575
"@qualcomm-ui/oxfmt-config": "workspace:*",
7676
"@qualcomm-ui/oxlint-config": "workspace:*",
@@ -111,5 +111,5 @@
111111
"playwright": "1.60.0",
112112
"typescript": "catalog:"
113113
},
114-
"packageManager": "pnpm@11.5.2+sha512.71c631e382066efc25625d5cf029075de07b61b37f6e27350fbd84b1bda5864c8c1967adc280776b45c30a715c0359a3be08fef42d5bb09e2b99029979692916"
114+
"packageManager": "pnpm@11.7.0+sha512.19cc852c120c7125760f2443ee6be0ca5b40f9f50598de1a09a1f177503e010e57c23c77646e01e761de59bf874fb22a3398c33ab9691fc13eb946b6f0f4d620"
115115
}

packages/common/core/tsconfig.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,10 @@
55
"path": "./tsconfig.lib.json"
66
},
77
{
8-
"path": "./tsconfig.node.json"
8+
"path": "./tsconfig.scripts.json"
99
},
1010
{
1111
"path": "./tsconfig.spec.json"
12-
},
13-
{
14-
"path": "../dom/tsconfig.lib.json"
15-
},
16-
{
17-
"path": "../utils/tsconfig.lib.json"
18-
},
12+
}
1913
]
2014
}

packages/common/core/tsconfig.node.json

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "@qualcomm-ui/tsconfig/tsconfig.scripts.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"outDir": "node_modules/.tmp/scripts-out-tsc",
6+
"tsBuildInfoFile": "node_modules/.tmp/.tsbuildinfo-scripts"
7+
},
8+
"include": ["*.ts"]
9+
}

packages/common/core/tsconfig.spec.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"extends": "@qualcomm-ui/tsconfig/tsconfig.node.json",
2+
"extends": "@qualcomm-ui/tsconfig/tsconfig.vitest.json",
33
"compilerOptions": {
44
"composite": true,
55
"incremental": true,
6-
"outDir": "./dist",
76
"rootDir": "./src",
8-
"tsBuildInfoFile": "node_modules/.tmp/tsbuildinfo-spec"
7+
"outDir": "node_modules/.tmp/spec-out-tsc",
8+
"tsBuildInfoFile": "node_modules/.tmp/.tsbuildinfo-spec"
99
},
1010
"include": ["./src/**/*.spec.ts", "./src/**/__tests__/**/*.ts"],
1111
"references": [

packages/common/dom/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"path": "./tsconfig.lib.json"
66
},
77
{
8-
"path": "./tsconfig.node.json"
8+
"path": "./tsconfig.scripts.json"
99
},
1010
{
1111
"path": "../utils/tsconfig.lib.json"

packages/common/dom/tsconfig.node.json

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "@qualcomm-ui/tsconfig/tsconfig.scripts.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"outDir": "node_modules/.tmp/scripts-out-tsc",
6+
"tsBuildInfoFile": "node_modules/.tmp/.tsbuildinfo-scripts"
7+
},
8+
"include": ["*.ts"]
9+
}

packages/common/mdx-common/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"path": "./tsconfig.lib.json"
66
},
77
{
8-
"path": "./tsconfig.node.json"
8+
"path": "./tsconfig.scripts.json"
99
},
1010
{
1111
"path": "./tsconfig.spec.json"

packages/common/typedoc-common/tsconfig.node.json renamed to packages/common/mdx-common/tsconfig.scripts.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"extends": "@qualcomm-ui/tsconfig/tsconfig.strict.json",
33
"compilerOptions": {
44
"composite": true,
5+
"outDir": "node_modules/.tmp/scripts-out-tsc",
6+
"tsBuildInfoFile": "node_modules/.tmp/.tsbuildinfo-scripts"
57
},
68
"include": ["*.ts"]
7-
}
9+
}

0 commit comments

Comments
 (0)