rowboat/apps/cli/tsconfig.json
2026-01-16 12:05:33 +05:30

21 lines
423 B
JSON

{
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"module": "nodenext",
"target": "esnext",
"lib": ["esnext"],
"types": ["node"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"sourceMap": true,
"jsx": "react-jsx",
"paths": {
"@/*": [
"./src/*"
]
}
}
}