| 12345678910111213141516171819202122232425 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "module": "NodeNext",
- "moduleResolution": "NodeNext",
- "rootDir": ".",
- "outDir": "dist",
- "strict": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "skipLibCheck": true,
- "declaration": true,
- "sourceMap": true,
- "jsx": "react-jsx",
- "types": ["node"]
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.tsx",
- "tests/**/*.ts",
- "tests/**/*.tsx",
- "scripts/**/*.ts",
- "scripts/**/*.tsx"
- ]
- }
|