og-image/tsconfig.json

21 lines
521 B
JSON
Raw Normal View History

2019-01-21 12:31:16 -08:00
{
"compilerOptions": {
2019-01-22 14:58:12 -08:00
"outDir": "dist",
2019-01-21 12:31:16 -08:00
"module": "commonjs",
"target": "esnext",
"moduleResolution": "node",
"jsx": "react",
"sourceMap": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"preserveConstEnums": true
},
"exclude": [
"node_modules"
]
}