11 lines
359 B
JSON
11 lines
359 B
JSON
// Custom tsconfig that includes all `.browser.ts` files in the repo
|
|
// and uses the correct compiler options for dependency resolution
|
|
{
|
|
"extends": "./tsconfig.all.json",
|
|
"compilerOptions": {
|
|
"customConditions": ["browser"]
|
|
},
|
|
"include": ["packages/**/*.browser.ts", "packages/**/index_browser.ts"],
|
|
"exclude": ["**/build/**", "**/node_modules/**"]
|
|
}
|