UNPKG

@getcronit/pylon

Version:

![Pylon cover](https://github.com/user-attachments/assets/c28e49b2-5672-4849-826e-8b2eab0360cc)

25 lines (21 loc) 660 B
{ "compilerOptions": { // enable latest features "lib": ["esnext"], "module": "esnext", "target": "esnext", "moduleResolution": "bundler", // support `import` from `node_modules` "noImplicitAny": false, "noImplicitThis": false, "jsx": "react-jsx", // support JSX "allowJs": true, // allow importing `.js` from `.ts` "esModuleInterop": true, // allow default imports for CommonJS modules // best practices "strict": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true, "experimentalDecorators": true, "useDefineForClassFields": false, "emitDecoratorMetadata": true } }