aboutsummaryrefslogtreecommitdiffhomepage
path: root/pkgs/client/tsconfig.json
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/client/tsconfig.json
parent785a98ebb0c65cc400d35897fab1460ad3f6959c (diff)
downloadkioku-0a71ccbbef6733de0a1272bb21376258c601fe64.tar.gz
kioku-0a71ccbbef6733de0a1272bb21376258c601fe64.tar.zst
kioku-0a71ccbbef6733de0a1272bb21376258c601fe64.zip
setup pnpm and tsc
Diffstat (limited to 'pkgs/client/tsconfig.json')
-rw-r--r--pkgs/client/tsconfig.json10
1 files changed, 10 insertions, 0 deletions
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"]
+}