12345678910111213141516171819202122232425262728293031323334 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "lib": ["DOM", "DOM.Iterable", "ESNext"],
- "types": ["vitest/globals", "@testing-library/jest-dom"],
- "module": "ESNext",
- "skipLibCheck": true,
- /* Bundler mode */
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx",
- /* Linting */
- "strict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true,
- "baseUrl": ".",
- "esModuleInterop": true,
- "paths": {
- "~/*": ["./src/*"],
- "@nm/*": ["./node_modules/*"]
- }
- },
- "include": ["src"],
- "references": [
- {
- "path": "./tsconfig.node.json"
- }
- ]
- }
|