Added sequential thinking module

This commit is contained in:
Schrody
2026-02-12 17:43:43 +01:00
parent 561d858a7f
commit e1a0d82864
8 changed files with 817 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"outDir": "./dist",
"rootDir": ".",
"target": "ES2022",
"lib": ["ES2022","DOM"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["node"]
},
"include": ["./**/*.ts"],
"exclude": ["**/*.test.ts", "vitest.config.ts"]
}