File tree Expand file tree Collapse file tree 5 files changed +36
-7
lines changed Expand file tree Collapse file tree 5 files changed +36
-7
lines changed Original file line number Diff line number Diff line change 9
9
"outputs" : [" {options.outputPath}" ],
10
10
"options" : {
11
11
"outputPath" : " packages/rsbuild-plugin/dist" ,
12
- "main" : " packages/rsbuild-plugin/cli/ src/index.ts" ,
12
+ "main" : " packages/rsbuild-plugin/src/index.ts" ,
13
13
"tsConfig" : " packages/rsbuild-plugin/tsconfig.json" ,
14
14
"assets" : [],
15
15
"project" : " packages/rsbuild-plugin/package.json" ,
Original file line number Diff line number Diff line change
1
+ export * from './cli/index' ;
2
+ export * from './utils/index' ;
3
+ export * from './constant' ;
4
+ export * from './logger' ;
Original file line number Diff line number Diff line change 1
1
{
2
+ "extends" : " ../../tsconfig.base.json" ,
2
3
"compilerOptions" : {
3
- "baseUrl" : " ." ,
4
- "rootDir" : " ./" ,
5
4
"outDir" : " dist" ,
6
5
"sourceMap" : false ,
7
6
"module" : " es2022" ,
8
7
"target" : " es2022" ,
9
- "skipLibCheck" : true ,
10
- "moduleResolution" : " node" ,
11
8
"allowJs" : false ,
12
9
"strict" : true ,
13
10
"types" : [" jest" , " node" ],
14
- "experimentalDecorators" : true ,
15
11
"resolveJsonModule" : true ,
16
12
"allowSyntheticDefaultImports" : true ,
17
- "esModuleInterop" : true ,
18
13
"removeComments" : true ,
19
14
"declaration" : true ,
20
15
"paths" : {
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "outDir" : " ../../dist/out-tsc" ,
5
+ "declaration" : true ,
6
+ "types" : [" node" ]
7
+ },
8
+ "include" : [" src/**/*.ts" ],
9
+ "exclude" : [
10
+ " jest.config.ts" ,
11
+ " src/**/*.spec.ts" ,
12
+ " src/**/*.test.ts" ,
13
+ " dist/**" ,
14
+ " node_modules/**"
15
+ ]
16
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "outDir" : " ../../dist/out-tsc" ,
5
+ "module" : " commonjs" ,
6
+ "types" : [" jest" , " node" ]
7
+ },
8
+ "include" : [
9
+ " jest.config.ts" ,
10
+ " src/**/*.test.ts" ,
11
+ " src/**/*.spec.ts" ,
12
+ " src/**/*.d.ts"
13
+ ]
14
+ }
You can’t perform that action at this time.
0 commit comments