Resolves https://github.com/webrecorder/browsertrix/issues/2660 ## Changes - Enables filtering workflow list by tag - Displays tags near workflow name in detail view - Adds `<btrix-filter-chip>` component - Migrates "schedule state", "only running", and "only mine" filters - Adds basic documentation to Storybook --------- Co-authored-by: Emma Segal-Grossman <hi@emma.cafe>
38 lines
900 B
JSON
38 lines
900 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"module": "esnext",
|
|
"target": "ES2018",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"useDefineForClassFields": false,
|
|
"plugins": [
|
|
{
|
|
"name": "ts-lit-plugin",
|
|
"strict": true,
|
|
"rules": {
|
|
"no-missing-import": "off",
|
|
},
|
|
"maxNodeModuleImportDepth": -1,
|
|
},
|
|
],
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"~assets/*": ["./src/assets/*"],
|
|
},
|
|
"lib": ["DOM", "DOM.Iterable", "ES2021.WeakRef", "ES2021.Intl"],
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules"],
|
|
}
|