UNPKG

vue-search-input

Version:

A Vue.js 3 search input component, inspired by the global search input of Storybook and GitHub.

53 lines 961 B
{ "compilerOptions": { "skipLibCheck": true, "baseUrl": ".", "target": "es2016", "useDefineForClassFields": true, "module": "esnext", "moduleResolution": "node", "strict": true, "jsx": "preserve", "sourceMap": true, "resolveJsonModule": true, "esModuleInterop": true, "lib": [ "esnext", "dom" ], "paths": { "@/*": [ "./src/*" ], "@playground/*": [ "./playground/*" ], "@root/*": [ "./*" ] }, "types": [ "vite/client", "vitest/globals", "jsdom", "node", ], }, "include": [ "src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "playground/**/*.ts", "playground/**/*.d.ts", "playground/**/*.tsx", "playground/**/*.vue", "tests/**/*.ts", "tests/**/*.d.ts", "tests/**/*.tsx", "tests/**/*.vue" ], "exclude": [ "node_modules" ] }