2023-03-28 07:53:57 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"target": "ES2020",
|
2023-04-13 07:28:30 +00:00
|
|
|
"lib": ["ES2020", "dom"],
|
2023-03-28 07:53:57 +00:00
|
|
|
"sourceMap": true,
|
2023-12-06 14:06:01 +00:00
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true
|
2023-07-11 06:02:58 +00:00
|
|
|
},
|
|
|
|
|
"include": ["./src"]
|
2023-03-28 07:53:57 +00:00
|
|
|
}
|