File tree Expand file tree Collapse file tree 3 files changed +24
-8
lines changed
packages/@vuepress/plugin-debug Expand file tree Collapse file tree 3 files changed +24
-8
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ../../../tsconfig.base.json" ,
3
- "compilerOptions" : {
4
- "module" : " CommonJS" ,
5
- "rootDir" : " ./src" ,
6
- "outDir" : " ./lib"
7
- },
8
- "include" : [" ./src" ],
9
3
"references" : [
10
4
{ "path" : " ../client/tsconfig.build.json" },
11
5
{ "path" : " ../core/tsconfig.build.json" },
12
- { "path" : " ../utils/tsconfig.build.json" }
13
- ]
6
+ { "path" : " ../utils/tsconfig.build.json" },
7
+ { "path" : " ./tsconfig.esm.json" },
8
+ { "path" : " ./tsconfig.cjs.json" }
9
+ ],
10
+ "files" : []
14
11
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../../tsconfig.base.json" ,
3
+ "compilerOptions" : {
4
+ "module" : " CommonJS" ,
5
+ "rootDir" : " ./src" ,
6
+ "outDir" : " ./lib"
7
+ },
8
+ "include" : [" ./src/index.ts" ]
9
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../../tsconfig.base.json" ,
3
+ "compilerOptions" : {
4
+ "module" : " ES2020" ,
5
+ "rootDir" : " ./src" ,
6
+ "outDir" : " ./lib"
7
+ },
8
+ "include" : [" ./src" ],
9
+ "exclude" : [" ./src/index.ts" ]
10
+ }
You can’t perform that action at this time.
0 commit comments