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