123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "useDefineForClassFields": true,
- "lib": ["DOM", "DOM.Iterable", "ESNext"],
- "allowJs": false,
- "skipLibCheck": true,
- "esModuleInterop": false,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "module": "ESNext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx",
- "paths": {
- "@/*": ["./src/*"],
- "table": [
- "./src/types/table.d.ts"
- ]
- }
- },
- "include": ["src"],
- "references": [{ "path": "./tsconfig.node.json" }]
- }
|