@getcronit/pylon
Version:

25 lines (21 loc) • 660 B
JSON
{
"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
}
}