mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-22 13:47:57 +00:00
3cbad1c0b3
* Fix tests - Remove jest tests and add coverage - Rebase master and fix tests * Ignore local .vscode Add clean script * Fix deps - Upgrade deps - Switch to esnext * Move tests to the right folder * Deps cleanup and bump up * Remove root level package.json * Fix grumbles * Remove the labeler action due to https://github.com/actions/labeler/issues/12 * Fix grumbles
29 lines
771 B
JSON
29 lines
771 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
|
|
},
|
|
"exclude": ["node_modules", "build"],
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "./declarations/**/*.d.ts"]
|
|
}
|