markdown2ghost/tsconfig.json
2022-06-26 20:01:29 +02:00

38 lines
984 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"module": "CommonJS",
"moduleResolution": "Node",
"target": "ES2015",
"outDir": "./dist",
"declaration": true,
"declarationDir": "./dist/__types__",
"resolveJsonModule": true,
// Production specific
"removeComments": true,
"sourceMap": false,
"watch": false,
// Checks
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true
},
"include": [
"./src"
]
}