Files
pezkuwi-telemetry/frontend/tsconfig.json
T
serge 41c93a8a19 Update frontend dependencies (#498)
* update npm packages

* update tsconfig

* remove babelrc, babel presets as well as stable package

* fix svg namespace tag syntax errors

* fix reference error due to namespace and class component having same name

* replace tslint with eslint

* make eslint happier

* update .nvmrc to 14

* update node version to 14 in gh workflow

* fix eslint warnings due to warnings treated as errors on CI (process.env.CI = true)

* pretty fix

* bump node version in Dockerfile

* use createRoot instead of react-dom render

* update browsers list in package.json
2022-09-16 11:07:51 +01:00

34 lines
814 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"outDir": "build",
"module": "esnext",
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"sourceMap": true,
"allowJs": false,
"jsx": "react",
"rootDir": "src",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noEmitOnError": false,
"pretty": true,
"forceConsistentCasingInFileNames": true,
"noErrorTruncation": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"resolveJsonModule": true,
"noUnusedParameters": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "build"],
"include": ["src", "declarations/**/*.d.ts"]
}