Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit a033d7b

Browse files
committed
chore: get tailwind intellisense
Also default to checkJs for extra files b/c it makes life easier.
1 parent bcd12ad commit a033d7b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

eslint.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// @ts-check
21
import { sheriff } from "eslint-config-sheriff";
32
import { defineFlatConfig } from "eslint-define-config";
43

tailwind.config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* I'm not used yet.
3+
* I just fix intellisense.
4+
*/

tsconfig.eslint.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
3-
"include": ["vite.config.ts", "eslint.config.js"],
3+
"include": ["vite.config.ts", "eslint.config.js", "tailwind.config.ts"],
44
"compilerOptions": {
5-
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.extra.json"
5+
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.extra.json",
6+
"checkJs": true
67
}
78
}

0 commit comments

Comments
 (0)