mirror of
https://github.com/bendtherules/react-to-markdown.git
synced 2026-08-18 22:03:20 +00:00
31 lines
627 B
JSON
31 lines
627 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"target": "es2015",
|
|
"outDir": "./lib",
|
|
"removeComments": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"preserveConstEnums": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*-spec.ts"
|
|
]
|
|
}
|