2022-09-29 05:25:21 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es2017",
|
|
|
|
|
"module": "esnext",
|
2023-11-02 13:24:16 +00:00
|
|
|
"lib": ["esnext", "DOM"],
|
2022-09-29 05:25:21 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
|
"declarationDir": "./dist"
|
|
|
|
|
},
|
2023-12-13 17:13:18 +00:00
|
|
|
"include": ["src/**/*.ts"]
|
2022-09-29 05:25:21 +00:00
|
|
|
}
|