markdown2ghost/tsconfig.json

36 lines
976 B
JSON
Raw Normal View History

2022-06-26 20:01:29 +02:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"module": "CommonJS",
"moduleResolution": "Node",
2022-06-30 13:43:49 +02:00
"target": "ES2021",
2022-06-26 20:01:29 +02:00
"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
},
2022-06-30 13:43:49 +02:00
"include": ["./src"]
2022-06-26 20:01:29 +02:00
}