Files
pdfme/tsconfig.base.json
Kyohei Fukuda c1e24761d2 [WIP] Enhancing the development experience (#327)
* TMP

* TMP

* Fix failing test

* Update ESLint configuration

* Update ESLint configuration
2023-11-22 00:09:00 +09:00

26 lines
491 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"esModuleInterop": true,
"isolatedModules": true,
"module": "ESNext",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"types": [
"node",
"jest",
],
"typeRoots": [
"node_modules/@types"
],
"sourceMap": true
},
}