rowboat/apps/cli/tsconfig.json

22 lines
423 B
JSON
Raw Normal View History

2025-10-28 13:17:06 +05:30
{
// 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,
2025-12-16 14:48:04 +05:30
"jsx": "react-jsx",
2025-10-28 13:17:06 +05:30
"paths": {
"@/*": [
"./src/*"
]
}
}
}