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