Skip to content

Commit

Permalink
fix: tsconfig issues
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Feb 26, 2022
1 parent 1eb7a1b commit 159adeb
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
1 change: 1 addition & 0 deletions package/logger/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
"rootDir": "src",
"outDir": ".",
},
Expand Down
11 changes: 8 additions & 3 deletions package/svg-icon/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
"rootDir": "./src/",
"outDir": ".",
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["**/*.ts"],
"exclude": ["*.d.ts", "node_modules"]
"include": [
"src/**/*.ts"
],
"exclude": [],
"references": [
// { "path": "../x" },
]
}
10 changes: 5 additions & 5 deletions package/util/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo",
"rootDir": "./src/",
"outDir": ".",
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": [
"**/*.ts"
"src/**/*.ts"
],
"exclude": [
"*.d.ts",
"node_modules"
"exclude": [],
"references": [
// { "path": "../x" },
]
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
"include": [ "*.ts" ],
"exclude": [],
"references": [
{"path": "./package/logger"},
{"path": "./package/util"},
{"path": "./package/svg-icon"},
{"path": "./demo"},
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3956,7 +3956,7 @@ lit-html@^2.2.0:
dependencies:
"@types/trusted-types" "^2.0.2"

lit@^2.1.2, lit@^2.1.3:
lit@^2.1.3, lit@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/lit/-/lit-2.2.0.tgz#1b83a2c1e4c5ecf3be785292b1a13e193597f610"
integrity sha512-FDyxUuczo6cJJY/2Bkgfh1872U4ikUvmK1Cb6+lYC1CW+QOo8CaWXCpvPKFzYsz0ojUxoruBLVrECc7VI2f1dQ==
Expand Down

0 comments on commit 159adeb

Please sign in to comment.