### Configure ESLint for Type-Aware Linting Source: https://github.com/jakubkuceradev/flowmodoro/blob/main/app/README.md Update the ESLint configuration to enable type-aware lint rules by configuring parserOptions. Ensure tsconfig.json files are correctly referenced. ```javascript export default { // other rules... parserOptions: { ecmaVersion: 'latest', sourceType: 'module', project: ['./tsconfig.json', './tsconfig.node.json'], tsconfigRootDir: __dirname, }, } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.