chore: clean tsconfig.json (#86)

Remove `allowJs` (the whole code is now migrated to TypeScript) and `jsx` (we are not using it).
Don't `skipLibCheck` for stronger type checks.
development
Thomas Bouffard 2022-05-17 12:24:48 +02:00 committed by GitHub
parent 3a1b08cd4c
commit 760cbd3f05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,6 @@
{
"compilerOptions": {
"baseUrl": ".",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "./dist",
@ -9,14 +8,13 @@
"emitDeclarationOnly": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "preserve",
"module": "ES2020",
"lib": ["dom"],
"moduleResolution": "node",
"outDir": "./dist",
"strict": true,
"target": "ES2020",
"skipLibCheck": true,
"skipLibCheck": false,
"forceConsistentCasingInFileNames": true
},
"exclude": ["node_modules", "e2e", "**/*.json", "**/*.spec.ts"],