mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-22 07:57:57 +00:00
779c5698a0
* 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
34 lines
817 B
JSON
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"]
|
|
}
|