2022-12-04 16:41:39 -05: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 05:01:57 -05:00
|
|
|
"declarationMap":true,
|
2023-03-26 06:30:16 -04:00
|
|
|
"sourceMap": true,
|
|
|
|
"typeRoots": ["./types"]
|
2022-12-04 16:41:39 -05:00
|
|
|
},
|
2023-03-26 06:30:16 -04:00
|
|
|
"include": ["./src", "./types"],
|
2023-02-05 06:03:13 -05:00
|
|
|
"exclude": ["./dist"]
|
2022-12-04 16:41:39 -05:00
|
|
|
}
|