aboutsummaryrefslogtreecommitdiffhomepage
path: root/pkgs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-11-30 06:09:29 +0900
committernsfisis <nsfisis@gmail.com>2025-11-30 06:09:29 +0900
commit0a71ccbbef6733de0a1272bb21376258c601fe64 (patch)
treef0f43e291cc4c283752f753a0b2e47b7d282ac9b /pkgs
parent785a98ebb0c65cc400d35897fab1460ad3f6959c (diff)
downloadkioku-0a71ccbbef6733de0a1272bb21376258c601fe64.tar.gz
kioku-0a71ccbbef6733de0a1272bb21376258c601fe64.tar.zst
kioku-0a71ccbbef6733de0a1272bb21376258c601fe64.zip
setup pnpm and tsc
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/client/package.json13
-rw-r--r--pkgs/client/src/index.ts1
-rw-r--r--pkgs/client/tsconfig.json10
-rw-r--r--pkgs/server/package.json13
-rw-r--r--pkgs/server/src/index.ts1
-rw-r--r--pkgs/server/tsconfig.json9
-rw-r--r--pkgs/shared/package.json13
-rw-r--r--pkgs/shared/src/index.ts1
-rw-r--r--pkgs/shared/tsconfig.json9
9 files changed, 70 insertions, 0 deletions
diff --git a/pkgs/client/package.json b/pkgs/client/package.json
new file mode 100644
index 0000000..35a5bae
--- /dev/null
+++ b/pkgs/client/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "@kioku/client",
+ "version": "0.1.0",
+ "private": true,
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "author": "nsfisis",
+ "license": "MIT",
+ "packageManager": "pnpm@10.23.0",
+ "type": "module"
+}
diff --git a/pkgs/client/src/index.ts b/pkgs/client/src/index.ts
new file mode 100644
index 0000000..cb0ff5c
--- /dev/null
+++ b/pkgs/client/src/index.ts
@@ -0,0 +1 @@
+export {};
diff --git a/pkgs/client/tsconfig.json b/pkgs/client/tsconfig.json
new file mode 100644
index 0000000..0dc0dfe
--- /dev/null
+++ b/pkgs/client/tsconfig.json
@@ -0,0 +1,10 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
+ "outDir": "./dist",
+ "rootDir": "./src"
+ },
+ "include": ["src/**/*"],
+ "exclude": ["node_modules", "dist"]
+}
diff --git a/pkgs/server/package.json b/pkgs/server/package.json
new file mode 100644
index 0000000..d986b65
--- /dev/null
+++ b/pkgs/server/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "@kioku/server",
+ "version": "0.1.0",
+ "private": true,
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "author": "nsfisis",
+ "license": "MIT",
+ "packageManager": "pnpm@10.23.0",
+ "type": "module"
+}
diff --git a/pkgs/server/src/index.ts b/pkgs/server/src/index.ts
new file mode 100644
index 0000000..cb0ff5c
--- /dev/null
+++ b/pkgs/server/src/index.ts
@@ -0,0 +1 @@
+export {};
diff --git a/pkgs/server/tsconfig.json b/pkgs/server/tsconfig.json
new file mode 100644
index 0000000..ed464a9
--- /dev/null
+++ b/pkgs/server/tsconfig.json
@@ -0,0 +1,9 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./dist",
+ "rootDir": "./src"
+ },
+ "include": ["src/**/*"],
+ "exclude": ["node_modules", "dist"]
+}
diff --git a/pkgs/shared/package.json b/pkgs/shared/package.json
new file mode 100644
index 0000000..c15c299
--- /dev/null
+++ b/pkgs/shared/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "@kioku/shared",
+ "version": "0.1.0",
+ "private": true,
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "author": "nsfisis",
+ "license": "MIT",
+ "packageManager": "pnpm@10.23.0",
+ "type": "module"
+}
diff --git a/pkgs/shared/src/index.ts b/pkgs/shared/src/index.ts
new file mode 100644
index 0000000..cb0ff5c
--- /dev/null
+++ b/pkgs/shared/src/index.ts
@@ -0,0 +1 @@
+export {};
diff --git a/pkgs/shared/tsconfig.json b/pkgs/shared/tsconfig.json
new file mode 100644
index 0000000..ed464a9
--- /dev/null
+++ b/pkgs/shared/tsconfig.json
@@ -0,0 +1,9 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./dist",
+ "rootDir": "./src"
+ },
+ "include": ["src/**/*"],
+ "exclude": ["node_modules", "dist"]
+}