Skip to content

Commit

Permalink
build: explicitly set typeRoots (#12599)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Jun 17, 2024
1 parent 9e12673 commit 0cba2b4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/changed-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,18 @@ jobs:
- 'tools/mocha-runner/**'
- '.mocharc.cjs'
- 'tools/doctest/**'
- 'tsconfig.base.json'
website:
- '.github/workflows/ci.yml'
- 'docs/**'
- 'website/**'
- 'README.md'
- 'tsconfig.base.json'
ng-schematics:
- '.github/workflows/ci.yml'
- 'packages/ng-schematics/**'
- 'tsconfig.base.json'
browsers:
- '.github/workflows/ci.yml'
- 'packages/browsers/**'
- 'tsconfig.base.json'
5 changes: 3 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ES2022",
"useUnknownInCatchVariables": true,
"skipLibCheck": true
"typeRoots": ["./node_modules/@types"],
"useUnknownInCatchVariables": true
}
}

0 comments on commit 0cba2b4

Please sign in to comment.