siwatsystem-mcp-dxt/tsconfig.json
Siwat Sirichai a433ac337d
Some checks failed
Build and Package DXT / build (push) Failing after 47s
feat: initialize project with package.json and tsconfig.json
- Added package.json for project dependencies and scripts
- Included TypeScript configuration in tsconfig.json
2025-07-06 01:31:52 +07:00

15 lines
363 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"types": ["node"]
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist"]
}