zappyzep/presetup-configurator/tsconfig.json

24 lines
515 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "esnext",
"target": "es2018",
"sourceMap": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"alwaysStrict": true,
"noImplicitThis": true,
"strictPropertyInitialization": false,
"lib": [
"esnext",
"dom"
],
"baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true,
"jsx": "react",
"skipLibCheck": true
}
}