CoolFace
Apppublic

Sarveni/Top-VS-Code-Extensions-Data-Analysis

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
tsconfig.json38 linesDownload Raw Back to root
1{2    "compilerOptions": {3        "target": "ESNext",4        "lib": [5            "DOM",6            "DOM.Iterable",7            "ESNext"8        ],9        "module": "ESNext",10        "skipLibCheck": true,11        /* Bundler mode */12        "moduleResolution": "bundler",13        "allowImportingTsExtensions": true,14        "resolveJsonModule": true,15        "isolatedModules": true,16        "noEmit": true,17        "jsx": "react-jsx",18        /* Linting */19        "strict": true,20        "noUnusedLocals": true,21        "noUnusedParameters": true,22        "noFallthroughCasesInSwitch": true,23        "baseUrl": ".",24        "paths": {25            "@/*": [26                "./src/*"27            ]28        }29    },30    "include": [31        "src"32    ],33    "references": [34        {35            "path": "./tsconfig.node.json"36        }37    ]38}