Skip to content

Commit

Permalink
use .js
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-s committed Dec 23, 2024
1 parent 96ac374 commit 6e64b94
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 9 deletions.
1 change: 1 addition & 0 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"tinycolor2": "^1.6.0",
"ts-node": "^10.9.2",
"typescript": "5.6.3",
"vite": "^6.0.0",
"vite-plugin-prismjs": "^0.0.11",
Expand Down
120 changes: 116 additions & 4 deletions web/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions web/tailwind.config.ts → web/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
// cSpell:ignore Segoe Roboto Neue Noto nocheck
/* eslint-disable ts/no-unsafe-return */
// eslint-disable-next-line ts/ban-ts-comment


// @ts-nocheck

import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
import tinycolor from 'tinycolor2';

Expand All @@ -28,7 +27,7 @@ const customColors = {
},
};

/* eslint-disable ts/no-unsafe-call */

export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
Expand Down Expand Up @@ -238,4 +237,4 @@ export default {
},
},
plugins: [typography()],
} satisfies Config;
};

0 comments on commit 6e64b94

Please sign in to comment.