Files
pezkuwi-telemetry/frontend/tsconfig.json
T
Chevdor 5b7f1ecbbb Fix the issues preventing to build (#257)
* 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
2020-04-23 19:00:05 +02:00

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"]
}