OneStart/tsconfig.json

15 lines
260 B
JSON
Raw Permalink Normal View History

2025-11-21 10:45:21 +07:00
{
"compilerOptions": {
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"module": "ESNext",
"target": "ES2022",
"skipLibCheck": true,
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}