2022-12-04 21:41:39 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"lib": [
|
|
|
|
"es2020",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"outDir": "dist/",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"allowJs": true,
|
2023-03-10 10:01:57 +00:00
|
|
|
"declarationMap":true,
|
2023-03-26 10:30:16 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"typeRoots": ["./types"]
|
2022-12-04 21:41:39 +00:00
|
|
|
},
|
2023-03-26 10:30:16 +00:00
|
|
|
"include": ["./src", "./types"],
|
2023-02-05 11:03:13 +00:00
|
|
|
"exclude": ["./dist"]
|
2022-12-04 21:41:39 +00:00
|
|
|
}
|