@matin_mortazavi/react-otp-input 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -0
- package/README.md +251 -0
- package/example/index.html +14 -0
- package/example/package.json +23 -0
- package/example/src/App.tsx +137 -0
- package/example/src/index.css +216 -0
- package/example/src/main.tsx +10 -0
- package/example/src/vite-env.d.ts +1 -0
- package/example/tsconfig.json +21 -0
- package/example/tsconfig.node.json +9 -0
- package/example/vite.config.ts +8 -0
- package/example/yarn.lock +787 -0
- package/lib/index.cjs +186 -0
- package/lib/index.cjs.map +1 -0
- package/lib/index.d.ts +39 -0
- package/lib/index.esm.js +180 -0
- package/lib/index.esm.js.map +1 -0
- package/package.json +59 -0
- package/rollup.config.js +19 -0
- package/tsconfig.json +21 -0
@@ -0,0 +1 @@
|
|
1
|
+
/// <reference types="vite/client" />
|
@@ -0,0 +1,21 @@
|
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"target": "ESNext",
|
4
|
+
"useDefineForClassFields": true,
|
5
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
6
|
+
"allowJs": false,
|
7
|
+
"skipLibCheck": true,
|
8
|
+
"esModuleInterop": false,
|
9
|
+
"allowSyntheticDefaultImports": true,
|
10
|
+
"strict": true,
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
12
|
+
"module": "ESNext",
|
13
|
+
"moduleResolution": "Node",
|
14
|
+
"resolveJsonModule": true,
|
15
|
+
"isolatedModules": true,
|
16
|
+
"noEmit": true,
|
17
|
+
"jsx": "react-jsx"
|
18
|
+
},
|
19
|
+
"include": ["src"],
|
20
|
+
"references": [{ "path": "./tsconfig.node.json" }]
|
21
|
+
}
|