Skip to content

Commit 2687d58

Browse files
committed
fix tsconfigPath setting
1 parent 0a1306a commit 2687d58

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

packages-internal/docs-utils/src/createTypeScriptProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const createTypeScriptProject = (
3838
const {
3939
name,
4040
rootPath,
41-
tsConfigPath: inputTsConfigPath = 'tsconfig.build.json',
41+
tsConfigPath: inputTsConfigPath = 'tsconfig.json',
4242
entryPointPath: inputEntryPointPath,
4343
files,
4444
} = options;

packages/api-docs-builder/utils/createTypeScriptProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const createTypeScriptProject = (
4343
const {
4444
name,
4545
rootPath,
46-
tsConfigPath: inputTsConfigPath = 'tsconfig.build.json',
46+
tsConfigPath: inputTsConfigPath = 'tsconfig.json',
4747
entryPointPath: inputEntryPointPath,
4848
files,
4949
} = options;

scripts/coreTypeScriptProjects.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,21 @@ import path from 'path';
33
export default {
44
material: {
55
rootPath: path.join(process.cwd(), 'packages/mui-material'),
6-
tsConfigPath: 'tsconfig.json',
76
entryPointPath: 'src/index.d.ts',
87
},
98
lab: {
109
rootPath: path.join(process.cwd(), 'packages/mui-lab'),
11-
tsConfigPath: 'tsconfig.json',
1210
entryPointPath: 'src/index.d.ts',
1311
},
1412
joy: {
1513
rootPath: path.join(process.cwd(), 'packages/mui-joy'),
16-
tsConfigPath: 'tsconfig.json',
1714
entryPointPath: 'src/index.ts',
1815
},
1916
system: {
2017
rootPath: path.join(process.cwd(), 'packages/mui-system'),
21-
tsConfigPath: 'tsconfig.json',
2218
entryPointPath: 'src/index.d.ts',
2319
},
2420
docs: {
2521
rootPath: path.join(process.cwd(), 'docs'),
26-
tsConfigPath: 'tsconfig.json',
2722
},
2823
};

0 commit comments

Comments
 (0)