Dmitriy Pleshevskiy
49aac94675
chore: add dist folder to repo chore(deps): add node-fetch for tests chore: change prepare request visibility chore: add tests for prepare request method chore: update example Closes #20
33 lines
715 B
JSON
33 lines
715 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"lib": [
|
|
"dom",
|
|
"es2020"
|
|
],
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"pretty": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|