-
-
Notifications
You must be signed in to change notification settings - Fork 226
Description
What version of Tailwind CSS IntelliSense are you using?
0.9.11
What version of Tailwind CSS are you using?
3.3.2
What package manager are you using?
yarn
What operating system are you using?
Mac
Tailwind config
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
// I have no idea why this changed everything to be like it was with tachyons...but here we are.
corePlugins: ["lineHeight"],
};VS Code settings
Workspace
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"eslint.workingDirectories": ["./client", "./server"],
"jest.pathToJest": "${workspaceFolder}/server/node_modules/.bin/jest",
"jest.pathToConfig": "${workspaceFolder}/server/jest.config.js",
"jest.rootPath": "${workspaceFolder}/server/",
"files.exclude": {
"${workspaceFolder}/shared": true,
"client/src/index.css": true,
"moderation-dashboard/**": true,
"node_modules/**": true,
"steam-sdk/**": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"search.exclude": {
"**/__generated__": true,
"**/*.lock": true,
"**/dist": true,
"**/generatedTypes": true
},
"terminal.integrated.tabs.enabled": false,
"tailwindCSS.includeLanguages": {
"plaintext": "javascript"
},
"tailwindCSS.codeActions": true,
"tailwindCSS.hovers": true
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"redhat.vscode-yaml",
"forbeslindesay.vscode-sql-template-literal"
]
}
}
User
{
"editor.minimap.enabled": false,
"html.autoClosingTags": false,
"typescript.autoClosingTags": false,
"diffEditor.ignoreTrimWhitespace": true,
"editor.autoClosingQuotes": "never",
"editor.autoClosingBrackets": "never",
"jestrunner.jestCommand": "docker-compose run server test",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordBasedSuggestions": false,
"workbench.editor.showTabs": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"gitlens.hovers.enabled": false,
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#333333",
"editor.rangeHighlightBorder": "#888888",
"editor.rangeHighlightBackground": "#333333"
},
"debug.javascript.autoAttachFilter": "disabled",
"terminal.integrated.tabs.location": "left",
"terminal.integrated.defaultProfile.osx": "/bin/zsh (migrated)",
"terminal.integrated.profiles.osx": {
"/bin/zsh (migrated)": {
"path": "/bin/zsh",
"args": ["-l"]
}
},
"redhat.telemetry.enabled": false,
"editor.guides.bracketPairs": true,
"cSpell.enabled": false,
"workbench.experimental.layoutControl.enabled": true,
"workbench.activityBar.visible": false,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": false,
"yaml": false,
"plaintext": false,
"markdown": false,
"typescript": false,
"typescriptreact": false,
"javascript": false
},
"terminal.integrated.scrollback": 10000,
"tabnine.experimentalAutoImports": true,
"yaml.customTags": [
"!And",
"!And sequence",
"!If",
"!If sequence",
"!Not",
"!Not sequence",
"!Equals",
"!Equals sequence",
"!Or",
"!Or sequence",
"!FindInMap",
"!FindInMap sequence",
"!Base64",
"!Join",
"!Join sequence",
"!Cidr",
"!Ref",
"!Sub",
"!Sub sequence",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!ImportValue sequence",
"!Select",
"!Select sequence",
"!Split",
"!Split sequence"
],
"terminal.integrated.tabs.enabled": false,
"[python]": {
"editor.formatOnType": true
},
"[typescriptreact]": {}
}
Reproduction URL
Unfortunately, not something I can provide. Of course, free to close the issue if that makes this not useful.
Describe your issue
I think the extension is not starting at all, though I'm not sure how to debug that. cmd->shift->p->"tailwind" fails to show anything at all. In the output pane, I do not see tailwinds listed in the pulldown.
Within the extension pane, if I got to the "Runtime Status" pane, I see this
Activation Event:onStartupFinished
Activation Time:8ms
It's a large project in a monorep. The client and tailwinds.config.js lives within a subfolder of the workspace root.