Skip to content

Commit e37fec8

Browse files
chore: dev refactor from removing inject styles
1 parent 76a2778 commit e37fec8

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.storybook/preview.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Preview } from "@storybook/react";
2+
import "../src/styles/tailwind.output.css";
23

34
const preview: Preview = {
45
parameters: {

eslint.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ module.exports = [
1919
...typescript.configs['recommended'].rules,
2020
...react.configs['recommended'].rules,
2121
'no-console': ['warn', { allow: ['warn', 'error'] }],
22+
'@typescript-eslint/no-explicit-any': 'off',
23+
'@typescript-eslint/no-unused-vars': 'warn'
2224
},
2325
settings: {
2426
react: {

tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./src/*"]
5+
},
36
"target": "es2018",
47
"module": "esnext",
58
"lib": ["dom", "esnext"],

0 commit comments

Comments
 (0)