2021-03-14 20:00:43 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"allowJs": true,
|
|
|
|
"declaration": true,
|
2021-03-30 05:16:31 -07:00
|
|
|
"declarationDir": "declarations",
|
2021-03-14 20:00:43 -07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"baseUrl": "src",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2022-03-23 12:58:42 -07:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true
|
2021-03-14 20:00:43 -07:00
|
|
|
},
|
|
|
|
"include": ["src"]
|
|
|
|
}
|