mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-12 00:41:29 +01:00
The legacy config is deprecated and will be removed in eslint 10. The flat config also allows us to write js functions which will assist in handling limitations with multiple identical rules.
15 lines
475 B
JavaScript
15 lines
475 B
JavaScript
/* eslint-disable no-undef, @typescript-eslint/no-require-imports */
|
|
const config = require("../../libs/components/tailwind.config.base");
|
|
|
|
config.content = [
|
|
"./src/**/*.{html,ts}",
|
|
"../../libs/components/src/**/*.{html,ts}",
|
|
"../../libs/auth/src/**/*.{html,ts}",
|
|
"../../libs/key-management/src/**/*.{html,ts}",
|
|
"../../libs/vault/src/**/*.{html,ts}",
|
|
"../../libs/angular/src/**/*.{html,ts}",
|
|
"../../libs/vault/src/**/*.{html,ts}",
|
|
];
|
|
|
|
module.exports = config;
|