|
| 1 | +{ |
| 2 | + "compilerOptions": { |
| 3 | + "allowSyntheticDefaultImports": true, |
| 4 | + "allowUmdGlobalAccess": false, |
| 5 | + "allowUnreachableCode": false, |
| 6 | + "allowUnusedLabels": false, |
| 7 | + "alwaysStrict": true, |
| 8 | + "charset": "utf8", |
| 9 | + "declaration": true, |
| 10 | + "diagnostics": false, |
| 11 | + "downlevelIteration": true, |
| 12 | + "emitBOM": false, |
| 13 | + "emitDecoratorMetadata": true, |
| 14 | + "emitDeclarationOnly": false, |
| 15 | + "experimentalDecorators": true, |
| 16 | + "forceConsistentCasingInFileNames": false, |
| 17 | + "importHelpers": true, |
| 18 | + "incremental": true, |
| 19 | + "inlineSourceMap": false, |
| 20 | + "inlineSources": true, |
| 21 | + "isolatedModules": false, |
| 22 | + "listEmittedFiles": false, |
| 23 | + "listFiles": false, |
| 24 | + "module": "es2020", |
| 25 | + "moduleResolution": "node", |
| 26 | + "noEmitHelpers": false, |
| 27 | + "noEmitOnError": false, |
| 28 | + "noFallthroughCasesInSwitch": true, |
| 29 | + "noImplicitAny": true, |
| 30 | + "noImplicitReturns": true, |
| 31 | + "noImplicitThis": true, |
| 32 | + "noImplicitUseStrict": false, |
| 33 | + "noUncheckedIndexedAccess": false, |
| 34 | + "noUnusedLocals": true, |
| 35 | + "noUnusedParameters": true, |
| 36 | + "preserveConstEnums": true, |
| 37 | + "pretty": true, |
| 38 | + "removeComments": false, |
| 39 | + "sourceMap": true, |
| 40 | + "strict": true, |
| 41 | + "strictBindCallApply": true, |
| 42 | + "strictFunctionTypes": true, |
| 43 | + "strictPropertyInitialization": true, |
| 44 | + "strictNullChecks": true, |
| 45 | + "stripInternal": true, |
| 46 | + "skipLibCheck": true, |
| 47 | + "suppressImplicitAnyIndexErrors": true, |
| 48 | + "suppressExcessPropertyErrors": false, |
| 49 | + "useDefineForClassFields": true, |
| 50 | + "target": "es2015", |
| 51 | + "lib": ["dom", "dom.iterable", "es2020"] |
| 52 | + }, |
| 53 | + "exclude": ["node_modules", "dist"], |
| 54 | + "formatCodeOptions": { |
| 55 | + "indentSize": 2, |
| 56 | + "tabSize": 4, |
| 57 | + "newLineCharacter": "\r\n", |
| 58 | + "convertTabsToSpaces": false, |
| 59 | + "insertSpaceAfterCommaDelimiter": true, |
| 60 | + "insertSpaceAfterSemicolonInForStatements": true, |
| 61 | + "insertSpaceBeforeAndAfterBinaryOperators": true, |
| 62 | + "insertSpaceAfterKeywordsInControlFlowStatements": true, |
| 63 | + "insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, |
| 64 | + "insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, |
| 65 | + "placeOpenBraceOnNewLineForFunctions": false, |
| 66 | + "placeOpenBraceOnNewLineForControlBlocks": false |
| 67 | + } |
| 68 | +} |
0 commit comments