go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/web/rpcexplorer/tsconfig.json (about)

     1  {
     2      "compilerOptions": {
     3          "target": "esnext",
     4          "module": "commonjs",
     5          "allowJs": true,
     6          "esModuleInterop": true,
     7          "noUnusedLocals": true,
     8          "noUnusedParameters": true,
     9          "noImplicitReturns": true,
    10          "noFallthroughCasesInSwitch": true,
    11          "strict": true,
    12          "moduleResolution": "node",
    13          "resolveJsonModule": true,
    14          "isolatedModules": true,
    15          "allowSyntheticDefaultImports": true,
    16          "experimentalDecorators": true,
    17          "noEmit": true,
    18          "jsx": "react-jsx",
    19          "lib": [
    20              "dom",
    21              "dom.iterable",
    22              "esnext"
    23          ],
    24          "paths": {
    25              "@/*": [
    26                  "./src/*"
    27              ]
    28          }
    29      },
    30      "include": [
    31          "src/*.ts",
    32          "src/*.tsx",
    33          "src/**/*.ts",
    34          "src/**/*.tsx"
    35      ],
    36  }