summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: f42ed9ad0eac67eb857c93331f2bf245069a86a5 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
  "include": ["lib", "doc"],
  "exclude": ["src", "tools", "out"],
  "files": [
    "./typings/internalBinding/async_wrap.d.ts",
    "./typings/internalBinding/blob.d.ts",
    "./typings/internalBinding/config.d.ts",
    "./typings/internalBinding/constants.d.ts",
    "./typings/internalBinding/fs.d.ts",
    "./typings/internalBinding/http_parser.d.ts",
    "./typings/internalBinding/messaging.d.ts",
    "./typings/internalBinding/options.d.ts",
    "./typings/internalBinding/os.d.ts",
    "./typings/internalBinding/serdes.d.ts",
    "./typings/internalBinding/symbols.d.ts",
    "./typings/internalBinding/timers.d.ts",
    "./typings/internalBinding/types.d.ts",
    "./typings/internalBinding/url.d.ts",
    "./typings/internalBinding/util.d.ts",
    "./typings/internalBinding/worker.d.ts",
    "./typings/globals.d.ts",
    "./typings/primordials.d.ts"
  ],
  "compilerOptions": {
    "allowJs": true,
    "checkJs": false,
    "noEmit": true,
    "lib": ["ESNext"],
    "target": "ESNext",
    "module": "CommonJS",
    "baseUrl": ".",
    "paths": {
      "_http_agent": ["./lib/_http_agent.js"],
      "_http_client": ["./lib/_http_client.js"],
      "_http_common": ["./lib/_http_common.js"],
      "_http_incoming": ["./lib/_http_incoming.js"],
      "_http_outgoing": ["./lib/_http_outgoing.js"],
      "_http_server": ["./lib/_http_server.js"],
      "_stream_duplex": ["./lib/_stream_duplex.js"],
      "_stream_passthrough": ["./lib/_stream_passthrough.js"],
      "_stream_readable": ["./lib/_stream_readable.js"],
      "_stream_transform": ["./lib/_stream_transform.js"],
      "_stream_wrap": ["./lib/_stream_wrap.js"],
      "_stream_writable": ["./lib/_stream_writable.js"],
      "_tls_common": ["./lib/_tls_common.js"],
      "_tls_wrap": ["./lib/_tls_wrap.js"],
      "assert": ["./lib/assert.js"],
      "assert/strict": ["./lib/assert/strict.js"],
      "async_hooks": ["./lib/async_hooks.js"],
      "buffer": ["./lib/buffer.js"],
      "child_process": ["./lib/child_process.js"],
      "cluster": ["./lib/cluster.js"],
      "console": ["./lib/console.js"],
      "constants": ["./lib/constants.js"],
      "crypto": ["./lib/crypto.js"],
      "dgram": ["./lib/dgram.js"],
      "diagnostics_channel": ["./lib/diagnostics_channel.js"],
      "dns": ["./lib/dns.js"],
      "dns/promises": ["./lib/dns/promises.js"],
      "domain": ["./lib/domain.js"],
      "events": ["./lib/events.js"],
      "fs": ["./lib/fs.js"],
      "fs/promises": ["./lib/fs/promises.js"],
      "http": ["./lib/http.js"],
      "http2": ["./lib/http2.js"],
      "https": ["./lib/https.js"],
      "inspector": ["./lib/inspector.js"],
      "internal/*": ["./lib/internal/*"],
      "module": ["./lib/module.js"],
      "net": ["./lib/net.js"],
      "os": ["./lib/os.js"],
      "path": ["./lib/path.js"],
      "path/posix": ["./lib/path/posix.js"],
      "path/win32": ["./lib/path/win32.js"],
      "perf_hooks": ["./lib/perf_hooks.js"],
      "process": ["./lib/process.js"],
      "punycode": ["./lib/punycode.js"],
      "querystring": ["./lib/querystring.js"],
      "readline": ["./lib/readline.js"],
      "repl": ["./lib/repl.js"],
      "stream": ["./lib/stream.js"],
      "stream/promises": ["./lib/stream/promises.js"],
      "string_decoder": ["./lib/string_decoder.js"],
      "sys": ["./lib/sys.js"],
      "timers": ["./lib/timers.js"],
      "timers/promises": ["./lib/timers/promises.js"],
      "tls": ["./lib/tls.js"],
      "trace_events": ["./lib/trace_events.js"],
      "tty": ["./lib/tty.js"],
      "url": ["./lib/url.js"],
      "util": ["./lib/util.js"],
      "util/types": ["./lib/util/types.js"],
      "v8": ["./lib/v8.js"],
      "vm": ["./lib/vm.js"],
      "wasi": ["./lib/wasi.js"],
      "worker_threads": ["./lib/worker_threads.js"],
      "zlib": ["./lib/zlib.js"]
    }
  }
}