OneStart/tsconfig.json
2026-01-29 13:56:50 +07:00

15 lines
293 B
JSON

{
"compilerOptions": {
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"module": "ESNext",
"target": "ES2022",
"skipLibCheck": true,
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@db/*": ["./database/*"]
}
}
}