-
-
Notifications
You must be signed in to change notification settings - Fork 532
/
tsconfig.json
41 lines (40 loc) · 1.2 KB
/
tsconfig.json
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
// This tsconfig.json drives Intellisense
{
"$schema": "./tsconfig.schemastore-schema.json",
"compilerOptions": {
// `target` and `lib` match @tsconfig/bases for node14, since that's the oldest node LTS, so it's the oldest node we support
"target": "es2020",
"lib": ["es2020"],
"rootDir": ".",
"outDir": "temp",
"tsBuildInfoFile": "temp/tsconfig.tsbuildinfo",
"noEmit": true,
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"types": ["node"],
"stripInternal": true,
"incremental": true,
"skipLibCheck": true,
"importsNotUsedAsValues": "error",
"allowJs": true,
// Enable to assist in sanity-checking your changes to JS files, but note you will see many unrelated type errors!
// "checkJs": true,
// "noImplicitAny": false
},
"include": [
"src/**/*"
],
"typedocOptions": {
"entryPoints": ["./src/index.ts"],
"readme": "none",
"out": "website/static/api",
"excludeTags": ["allof"],
"categorizeByGroup": false,
"categoryOrder": ["Basic", "REPL", "Transpiler", "ESM Loader", "Other"],
"defaultCategory": "Other"
}
}