From 76e6bd77b8ac16dab4e6bd7a30b16ae59dac2c08 Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Thu, 12 Dec 2024 11:24:45 +0800 Subject: [PATCH] cleanup: @proj-airi/cute-ui --- cspell.config.yaml | 1 + packages/cute-ui/package.json | 5 ++--- packages/cute-ui/src/index.ts | 0 packages/cute-ui/tsconfig.json | 24 ++++++++++++++++++++++++ 4 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 packages/cute-ui/src/index.ts create mode 100644 packages/cute-ui/tsconfig.json diff --git a/cspell.config.yaml b/cspell.config.yaml index a853b27..05e86bc 100644 --- a/cspell.config.yaml +++ b/cspell.config.yaml @@ -27,6 +27,7 @@ words: - demi - elevenlabs - gltf + - histoire - hiyori - huggingface - iconify diff --git a/packages/cute-ui/package.json b/packages/cute-ui/package.json index a088ef6..a64a66b 100644 --- a/packages/cute-ui/package.json +++ b/packages/cute-ui/package.json @@ -18,7 +18,6 @@ "dist", "package.json" ], - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - } + "scripts": {}, + "devDependencies": {} } diff --git a/packages/cute-ui/src/index.ts b/packages/cute-ui/src/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/packages/cute-ui/tsconfig.json b/packages/cute-ui/tsconfig.json new file mode 100644 index 0000000..d097879 --- /dev/null +++ b/packages/cute-ui/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "target": "ESNext", + "jsx": "preserve", + "lib": [ + "ESNext", + "DOM" + ], + "baseUrl": ".", + "module": "ESNext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "strict": true, + "strictNullChecks": true, + "noUnusedLocals": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "isolatedModules": true, + "skipLibCheck": true + }, + "include": [ + "src/**/*" + ] +}