2022-12-03 13:08:49 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
2023-02-14 19:23:51 +03:00
|
|
|
"declarationMap": true,
|
2022-12-03 13:08:49 +03:00
|
|
|
"outDir": "lib",
|
|
|
|
"target": "es2020",
|
|
|
|
"lib": ["es2020"], // Set explicitly to remove DOM
|
2023-02-14 19:23:51 +03:00
|
|
|
"sourceMap": true,
|
2022-12-03 13:08:49 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
},
|
|
|
|
"include": ["src"],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"*.d.ts"
|
|
|
|
],
|
|
|
|
}
|