mirror of
https://github.com/chenasraf/protonmail-pro-mcp.git
synced 2026-05-17 17:38:06 +00:00
✨ Features: - ES2022 target for modern JavaScript features - ES Modules configuration - Strict type checking enabled - Source maps and declarations - Professional build configuration 🏆 Production-ready TypeScript setup
21 lines
532 B
JSON
21 lines
532 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2022"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts"]
|
|
} |