From 4ad705369570e6a21f579632da32e3084ee95ebb Mon Sep 17 00:00:00 2001 From: MarioCadenas Date: Sun, 13 Apr 2025 21:44:58 +0200 Subject: [PATCH] feat: first version --- README.md | 4 ++++ playground/tsconfig.json | 19 ------------------- 2 files changed, 4 insertions(+), 19 deletions(-) delete mode 100644 playground/tsconfig.json diff --git a/README.md b/README.md index b3e5aca..06dd9a4 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ A Vite plugin for handling CSS sourcemaps. This plugin ensures that CSS sourcemaps are properly generated and referenced in your Vite builds. +> [!IMPORTANT] +> This plugin is only meant for the build phase, to generate sourcemap files for your build. +> It doesn't work on dev mode. + ## Features - Automatically generates sourcemaps for CSS files diff --git a/playground/tsconfig.json b/playground/tsconfig.json deleted file mode 100644 index 1b0362c..0000000 --- a/playground/tsconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2020", - "useDefineForClassFields": true, - "module": "ESNext", - "lib": ["ES2020", "DOM", "DOM.Iterable"], - "skipLibCheck": true, - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true - }, - "include": ["src"] -}