-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtsconfig.json
27 lines (27 loc) · 1.08 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
{
"compilerOptions": {
/* Basic Options */
"target": "ES2023", /* Specify ECMAScript target version. */
"module": "commonjs", /* Specify module code generation. */
"lib": [
"es2023",
"dom",
"esnext.asynciterable"
], /* Specify library files to be included in the compilation. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"outDir": "lib", /* Redirect output structure to the directory. */
"rootDir": "src", /* Specify the root directory of input files. */
"strict": true, /* Enable all strict type-checking options. */
"esModuleInterop": true, /* Enables interoperability between CommonJS and ES Modules. */
"resolveJsonModule": true, /* Include modules imported with '.json' extension */
"stripInternal": true,
"importHelpers": true, /* Reduce duplication of helper functions */
"incremental": true, /* Enable incremental compilation */
"moduleResolution": "node" /* Use node module resolution */,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": [
"./src/**/*"
]
}