Skip to content

Commit

Permalink
Fix misconfigured tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
cezaraugusto committed Jul 25, 2023
1 parent 85a67b0 commit 9a469af
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion tsconfig.json
@@ -1,5 +1,24 @@
{
"extends": "../../packages/tsconfig/base.json",
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"target": "es6",
"lib": ["es2021"],
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true,
"resolveJsonModule": true
},
"include": ["."],
"exclude": ["dist", "node_modules"]
}

0 comments on commit 9a469af

Please sign in to comment.