Files
brave-core/tsconfig-webpack.json
T
Pete Miller 7f713d0862 Improve use of chromium generated JS within Typescript
- Use types directly from cr.m.js so that we get typing support for all methods
- Make sure Typescript is aware of the generated location both at design-time and compile-time
- Remove chrome://resources/mojom which isn't setup to serve page-specific mojom, preferring gen/ which is explcit to use via bundler for all generated output
2021-09-21 22:44:33 -07:00

16 lines
467 B
JSON

{
"extends": "./tsconfig",
"compilerOptions": {
// Remove all previous path mappings -
// we want to explictly remove our dev-time list so that
// we don't mistakenly resolve to a different build configuration,
// hiding an error or a timing issue with the dev's
// current build configuration.
"paths": {}
},
"include": [
"./components/definitions/*",
"./components/brave_extension/extension/brave_extension/types/**/*"
]
}