This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
rotini/frontend/tsconfig.json

20 lines
495 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"jsx": "react-jsx",
"module": "commonjs",
"rootDir": ".",
"moduleResolution": "node",
"allowJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"skipLibCheck": true,
"types": ["node", "mocha"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}