2020-03-09 00:44:22 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-07-17 01:28:12 +00:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"composite": true,
|
|
|
|
"incremental": true,
|
|
|
|
"lib": ["ESNext"],
|
2020-03-09 00:44:22 +00:00
|
|
|
"importHelpers": true,
|
2020-07-17 01:28:12 +00:00
|
|
|
"declarationMap": true,
|
2020-03-09 00:44:22 +00:00
|
|
|
"declaration": true,
|
2020-07-17 01:28:12 +00:00
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"sourceMap": false,
|
2020-03-09 00:44:22 +00:00
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
2020-07-17 01:28:12 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"isolatedModules": true,
|
2020-03-09 00:44:22 +00:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-07-17 01:28:12 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "Node",
|
2020-03-09 00:44:22 +00:00
|
|
|
"jsx": "react",
|
2020-07-17 01:28:12 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"declarationDir": "./dist",
|
|
|
|
"outDir": "./dist",
|
|
|
|
"rootDir": "./src"
|
|
|
|
},
|
|
|
|
"include": ["./src"]
|
2020-03-09 00:44:22 +00:00
|
|
|
}
|