rss-reader/tsconfig.json

18 lines
425 B
JSON

{
"compilerOptions": {
"target": "es2017",
"jsx": "react-jsx",
"jsxImportSource": "react",
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"rootDir": ".",
"paths": {
"@/*": ["./src/*"]
},
"types": [
"@testing-library/jest-dom"
]
},
"include": ["src/**/*", "netlify/**/*"]
}