2020-07-22 04:46:57 +03:00
|
|
|
{
|
2020-07-25 17:30:07 +03:00
|
|
|
"include": ["src", "types", "decs.d.ts"],
|
2020-07-22 04:46:57 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2018",
|
|
|
|
"module": "esnext",
|
|
|
|
"lib": ["dom", "esnext"],
|
|
|
|
"importHelpers": true,
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"*": ["src/*", "node_modules/*"]
|
|
|
|
},
|
|
|
|
"jsx": "react",
|
|
|
|
"esModuleInterop": true
|
|
|
|
}
|
|
|
|
}
|