Skip to content

Commit

Permalink
fix: tsBuildInfoFile path in tsconfig.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Dec 23, 2023
1 parent 9cfcb59 commit 9c4ba01
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ package-lock.json

# Build
dist
.tsbuildinfo
*.tsbuildinfo
*.map
*.d.ts

Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"explorer.fileNesting.patterns": {
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts, ${capture}.d.ts.map",
"*.ts": "${capture}.js, ${capture}.js.map, ${capture}.d.ts, ${capture}.d.ts.map",
"tsconfig.json": "tsconfig.*.json, .tsbuildinfo"
"tsconfig.json": "tsconfig.*.json, *.tsbuildinfo"
},
"files.associations": {
"*.ajs": "json",
Expand Down
1 change: 0 additions & 1 deletion packages/deep-clone/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"outDir": "dist",
"emitDeclarationOnly": true,
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["src/**/*.ts"]
}
1 change: 0 additions & 1 deletion packages/flat-string/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"outDir": "dist",
"emitDeclarationOnly": true,
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["src/**/*.ts"]
}
1 change: 0 additions & 1 deletion packages/global-scope/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"outDir": "dist",
"emitDeclarationOnly": true,
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["src/**/*.ts"]
}
1 change: 0 additions & 1 deletion packages/platform-info/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"outDir": "dist",
"emitDeclarationOnly": true,
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["src/**/*.ts"]
}
4 changes: 2 additions & 2 deletions packages/tsconfig-base/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// "jsx": "preserve",
"declaration": true,
// "outFile": "./",
"outDir": "./",
// "outDir": "./",
// "rootDir": "./src",
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
// "tsBuildInfoFile": ".tsbuildinfo",
// "removeComments": true,
// "noEmit": true,
// "emitDeclarationOnly": true,
Expand Down

0 comments on commit 9c4ba01

Please sign in to comment.