mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-22 20:48:05 +00:00
5b7f1ecbbb
* Lock deps to fix build issues * Upgrade some of the deps * Upgrade to the latest polkadot util-crypto and stop reporting issues on the libs * Remove buggy 'yarn check' and add prettifier check
30 lines
795 B
JSON
30 lines
795 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "build",
|
|
"module": "esnext",
|
|
"target": "ES2017",
|
|
"lib": ["es6", "dom"],
|
|
"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/**/*.ts", "src/**/*.tsx", "declarations/**/*.d.ts"]
|
|
}
|