- 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
16 lines
467 B
JSON
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/**/*"
|
|
]
|
|
}
|