Files
pezkuwi-telemetry/frontend/tsconfig.json
T
James Wilson 779c5698a0 Update frontend build system to shed old dependencies, and address fallout from that (#521)
* get tests working and update copyright headers

* lint fix

* eslint ts update

* update CI to use NPM

* fix CI

* prettier

* npm, not yarn for docker

* remove unused package

* bump dockerfile to latest node LTS and no need for cache clean

* make frontend Dockerfile work and remove unused SUBSTRATE_TELEMETRY_SAMPLE

* remove final yarn references

* add another comment

* remove unused import

* remove more unused deps

* comment typo
2023-01-27 14:13:34 +00:00

34 lines
817 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./build/",
"module": "es2020",
"target": "es2015",
"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"]
}