github.com/vcilabs/webrpc@v0.5.2-0.20201116131534-162e27b1b33b/_examples/hello-webrpc-with-goschema-ts/webapp/tsconfig.json (about)

     1  {
     2    "compilerOptions": {
     3      "target": "es5",
     4      "module": "esnext",
     5      "moduleResolution": "node",
     6      "jsx": "react",
     7      "sourceMap": true,
     8      "allowSyntheticDefaultImports": true,
     9      "resolveJsonModule": true,
    10      "downlevelIteration": true,
    11      "importHelpers": true,
    12      "removeComments": false,
    13      "esModuleInterop": true,
    14  
    15      "strictNullChecks": true,
    16      "noImplicitUseStrict": true,
    17      "noImplicitAny": false,
    18      "noImplicitReturns": true,
    19      "noImplicitThis": true,
    20      "noUnusedParameters": false,
    21      "noErrorTruncation": true,
    22  
    23      "experimentalDecorators": true,
    24      "forceConsistentCasingInFileNames": true,
    25      "allowJs": false,
    26      "checkJs": false,
    27  
    28      "baseUrl": "./",
    29      "rootDir": "./src",
    30  
    31      "lib": [
    32        "dom",
    33        "es2015"
    34      ]
    35    },
    36  
    37    "include": [
    38      "src/**/*.ts",
    39      "src/**/*.tsx"
    40    ],
    41  
    42    "exclude": [
    43      "node_modules",
    44      "dist"
    45    ],
    46  
    47    "references": [
    48    ]
    49  }