-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 800 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 800 Bytes
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
{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"checkJs": false,
"target": "es2024",
// Target environment (https://www.npmjs.com/package/@tsconfig/node24)
"lib": ["es2024", "ESNext.Array", "ESNext.Collection", "ESNext.Error", "ESNext.Iterator", "ESNext.Promise"],
"module": "nodenext",
"moduleResolution": "node16",
"isolatedModules": true,
"strict": false,
"noImplicitAny": false,
"allowImportingTsExtensions": true,
"skipLibCheck": true,
"strictBindCallApply": true,
"erasableSyntaxOnly": true
},
"include": ["index.mjs"],
"typedocOptions": {
"entryPoints": ["index.mjs"],
"jsDocCompatibility": {
"exampleTag": true,
"defaultTag": true,
"inheritDocTag": true,
"ignoreUnescapedBraces": true
},
"customCss": "./docsTheme/main.css"
}
}