Skip to content

Commit

Permalink
chore: config small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcaidev committed Dec 19, 2024
1 parent f982a67 commit bb80df8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ cache
dist
node_modules
*.tgz
*.tsbuildinfo
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tailwindcss-radix-colors",
"version": "1.4.1",
"description": "Bring Radix UI's color system to Tailwind CSS.",
"description": "Bring Radix UI's color system to Tailwind CSS",
"keywords": [
"tailwindcss",
"plugin",
Expand All @@ -19,21 +19,21 @@
"email": "[email protected]",
"url": "https://mrcai.dev"
},
"type": "module",
"files": ["dist"],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mrcaidev/tailwindcss-radix-colors.git"
},
"type": "module",
"scripts": {
"build": "bun run scripts/build.ts",
"docs:dev": "vitepress dev docs",
Expand Down
16 changes: 2 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,24 @@
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"noEmit": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"lib": ["ESNext"],
"target": "ESNext",
"incremental": true,
"skipLibCheck": true
},
"include": ["**/*", "docs/.vitepress/**/*.ts"]
"include": ["**/*", "docs/.vitepress/config.ts"]
}

0 comments on commit bb80df8

Please sign in to comment.