Initial commit: TickTick MCP Server with interactive setup

This commit is contained in:
柴田貴司 2025-09-22 18:50:15 +09:00
commit 748bf79ab4
40 changed files with 10855 additions and 0 deletions

26
tsconfig.json Normal file
View file

@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"removeComments": true,
"sourceMap": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts"
]
}