mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-20 20:29:11 -04:00
* tmp * chore: update TypeScript configuration to use ESNext module and resolution * fix: update remaining imports with .js extensions and tsconfig files with nodenext Co-Authored-By: Kyohei Fukuda <kyouhei.fukuda0729@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
27 lines
511 B
JSON
27 lines
511 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ESNext"
|
|
],
|
|
"moduleResolution": "nodenext",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"types": [
|
|
"node",
|
|
"jest",
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"sourceMap": true
|
|
},
|
|
} |