UNPKG

rollup-plugin-caveman

Version:

Converts Caveman templates to ES6 modules

23 lines (19 loc) 1.08 kB
{ "compilerOptions": { /* Language and Environment */ "target": "es2022" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, /* Modules */ "allowSyntheticDefaultImports": true, "module": "nodenext" /* Specify what module code is generated. */, "moduleResolution": "nodenext" /* Specify how TypeScript looks up a file from a given module specifier. */, /* Emit */ "noEmit": true /* Disable emitting files from a compilation. */, "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, /* Type Checking */ "strict": true /* Enable all strict type-checking options. */, "noUncheckedIndexedAccess": true /* Add 'undefined' to a type when accessed using an index. */, "skipLibCheck": true /* Skip type checking all .d.ts files. */ }, "exclude": ["dist"] }