metaforecast/tsconfig.json
Vyacheslav Matyukhin 164f996f41
feat: convert all js to ts
allowJs is set to false in tsconfig.json now; please write all future
code with typescript.

cleanups:
- removed platforms/deprecated
- removed flow/history/old
    - see https://github.com/QURIresearch/metaforecast/issues/22
- commented some invalid axios options
- minor fixes with mismatching function arguments
- commented invalid mongo call in databaseReadWithReadCredentials
- {encoding: 'utf-8'} in readFileSync calls
2022-03-28 00:32:47 +03:00

32 lines
587 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "CommonJS",
"outDir": "out",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"jsx": "preserve",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"strict": false,
"noEmit": true,
"incremental": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true
},
"include": [
"next-env.d.ts",
"src/**/*.ts",
"src/**/*.js",
"src/**/*.tsx"
],
"exclude": [
"node_modules"
]
}