Files
drawio-mcp-server/tsconfig.json
Alejandro Lembke Barrientos bf088da9d5
Some checks failed
CI Pipeline / Test and Build (20.x) (push) Failing after 3m22s
CI Pipeline / Code Quality Check (push) Failing after 11m52s
CI Pipeline / Security Audit (push) Failing after 11m53s
CI Pipeline / Test and Build (18.x) (push) Failing after 12m31s
CI Pipeline / Build Release Artifacts (push) Has been cancelled
CI Pipeline / Notification (push) Has been cancelled
Creating first version of MCP server.
2025-07-22 07:11:59 +00:00

38 lines
1.0 KiB
JSON

{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "node",
"target": "ES2022",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "./build",
"rootDir": "./src",
"strict": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"typeRoots": ["./src/@types", "./node_modules/@types"],
"baseUrl": ".",
"paths": {
"@src/*": ["src/*"],
"@src": ["src"],
"@tools/*": ["src/tools/*"],
"@tools": ["src/tools"],
"@resources/*": ["src/resources/*"],
"@resources": ["src/resources"],
"@types/*": ["src/types/*"],
"@types": ["src/types"],
"@generators/*": ["src/generators/*"],
"@generators": ["src/generators"],
"@utils/*": ["src/utils/*"],
"@utils": ["src/utils"],
"@templates/*": ["templates/*"],
"@templates": ["templates"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build", "**/*.test.ts"]
}