aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-03 06:03:27 -0800
committerFuwn <[email protected]>2026-02-03 19:34:46 -0800
commit8db6718fcec40a87e3f1c90e8c339c72abab8249 (patch)
treeae671db2b7bfb3c622874ff2f5d25a3ab994540d /packages
parentstyle: Apply Iku formatting rules (diff)
downloadarchived-imemio-8db6718fcec40a87e3f1c90e8c339c72abab8249.tar.xz
archived-imemio-8db6718fcec40a87e3f1c90e8c339c72abab8249.zip
refactor(root): Extract shared TypeScript configuration
Diffstat (limited to 'packages')
-rw-r--r--packages/iku/tsconfig.json11
-rw-r--r--packages/mcp/tsconfig.json16
-rw-r--r--packages/sdk/tsconfig.json16
3 files changed, 6 insertions, 37 deletions
diff --git a/packages/iku/tsconfig.json b/packages/iku/tsconfig.json
index 55742be..761d673 100644
--- a/packages/iku/tsconfig.json
+++ b/packages/iku/tsconfig.json
@@ -1,15 +1,8 @@
{
+ "extends": "../../tsconfig.node.json",
"compilerOptions": {
- "target": "ES2022",
- "module": "NodeNext",
- "moduleResolution": "NodeNext",
- "declaration": true,
"outDir": "./dist",
- "rootDir": "./src",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true
+ "rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
diff --git a/packages/mcp/tsconfig.json b/packages/mcp/tsconfig.json
index a55afed..761d673 100644
--- a/packages/mcp/tsconfig.json
+++ b/packages/mcp/tsconfig.json
@@ -1,20 +1,8 @@
{
+ "extends": "../../tsconfig.node.json",
"compilerOptions": {
- "target": "ES2022",
- "module": "NodeNext",
- "moduleResolution": "NodeNext",
- "lib": ["ES2022"],
- "strict": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
"outDir": "./dist",
- "rootDir": "./src",
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "noUncheckedIndexedAccess": true,
- "noEmitOnError": true
+ "rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
diff --git a/packages/sdk/tsconfig.json b/packages/sdk/tsconfig.json
index a55afed..761d673 100644
--- a/packages/sdk/tsconfig.json
+++ b/packages/sdk/tsconfig.json
@@ -1,20 +1,8 @@
{
+ "extends": "../../tsconfig.node.json",
"compilerOptions": {
- "target": "ES2022",
- "module": "NodeNext",
- "moduleResolution": "NodeNext",
- "lib": ["ES2022"],
- "strict": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
"outDir": "./dist",
- "rootDir": "./src",
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "noUncheckedIndexedAccess": true,
- "noEmitOnError": true
+ "rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]