Skip to content

Commit

Permalink
test: ignore playground from typechecking
Browse files Browse the repository at this point in the history
  • Loading branch information
lihbr committed Aug 21, 2023
1 parent e626155 commit 4a5ea72
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,27 @@
"compilerOptions": {
"strict": true,
"skipLibCheck": true,

"target": "esnext",
"module": "esnext",
"declaration": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,

"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"lib": ["esnext", "dom"],
"types": ["node"]
"lib": [
"esnext",
"dom"
],
"types": [
"node"
]
},
"exclude": ["node_modules", "dist", "examples"]
}
"exclude": [
"node_modules",
"dist",
"examples",
"playground"
]
}

0 comments on commit 4a5ea72

Please sign in to comment.