@nationalbankbelgium/code-style
Version:
Front-End code style
69 lines (68 loc) • 2.18 kB
JSON
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUmdGlobalAccess": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"charset": "utf8",
"declaration": true,
"diagnostics": false,
"downlevelIteration": true,
"emitBOM": false,
"emitDecoratorMetadata": true,
"emitDeclarationOnly": false,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": false,
"importHelpers": true,
"incremental": true,
"inlineSourceMap": false,
"inlineSources": true,
"isolatedModules": false,
"listEmittedFiles": false,
"listFiles": false,
"module": "es2020",
"moduleResolution": "node",
"noEmitHelpers": false,
"noEmitOnError": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"pretty": true,
"removeComments": false,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictNullChecks": true,
"stripInternal": true,
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": true,
"suppressExcessPropertyErrors": false,
"useDefineForClassFields": true,
"target": "es2015",
"lib": ["dom", "dom.iterable", "es2020"]
},
"exclude": ["node_modules", "dist"],
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 4,
"newLineCharacter": "\r\n",
"convertTabsToSpaces": false,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
}
}