freshyo/packages/migrator/tsconfig.json
2026-03-27 01:59:26 +05:30

18 lines
435 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": ".",
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"include": ["src/**/*", "index.ts"],
"exclude": ["node_modules", "dist"]
}