Files
brave-core/tsconfig-webpack.json
2026-03-20 08:27:20 -04:00

16 lines
470 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/**/*",
],
}