remote-rdr / tsconfig.json
shiveshnavin's picture
Fixes
f431cd4
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "ES2018",
"resolveJsonModule": true,
"module": "commonjs",
"jsx": "react-jsx",
"outDir": "./dist",
"strict": true,
"noEmit": true,
"noEmitOnError": false,
"lib": [
"es2015"
],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true
}
}