File size: 1,093 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  "compilerOptions": {
    "noEmit": true,
    "rootDir": ".",

    "allowJs": true,
    "checkJs": true,

    "lib": ["ESNext", "DOM"],
    "skipLibCheck": true,

    "strict": true,
    "jsx": "preserve",

    // most of the code is untyped
    "noImplicitAny": false,
    "noImplicitThis": false,

    "target": "ESNext",
    "esModuleInterop": true,
    "module": "Preserve",
    "moduleResolution": "bundler",
    "moduleDetection": "force"
  },
  "files": ["./index.ts"], // loads ambient declarations for modules used in tests
  "include": ["./**/*/input.*", "./**/*/output.*"],
  "exclude": [
    // FIXME: invalid transformation of hoisted functions (https://github.com/vercel/next.js/issues/57392)
    "./server-graph/25/output.js",
    "./server-graph/28/output.js",
    "./server-graph/30/output.js",
    // FIXME: buggy renaming of anonymous functions
    "./server-graph/51/output.js",
    // Excluded because of weird TS behavior around `action.bind(...)` making args optional
    // (but only if no JSDoc type annotations are present)
    "./server-graph/24/output.js"
  ]
}