Initial commit
This commit is contained in:
11
packages/tailwindcss-config/package.json
Normal file
11
packages/tailwindcss-config/package.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "@extension/tailwindcss-config",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - tailwindcss configuration",
|
||||
"main": "tailwind.config.ts",
|
||||
"private": true,
|
||||
"sideEffects": false,
|
||||
"devDependencies": {
|
||||
"@extension/tsconfig": "workspace:*"
|
||||
}
|
||||
}
|
||||
8
packages/tailwindcss-config/tailwind.config.ts
Normal file
8
packages/tailwindcss-config/tailwind.config.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
export default {
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
} as Omit<Config, 'content'>;
|
||||
7
packages/tailwindcss-config/tsconfig.json
Normal file
7
packages/tailwindcss-config/tsconfig.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"extends": "@extension/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": "."
|
||||
},
|
||||
"include": ["tailwind.config.ts"]
|
||||
}
|
||||
Reference in New Issue
Block a user