Skip to content

Commit

Permalink
fix: add tsconfig.json to create-remdx template (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
shirakaba committed Oct 18, 2023
1 parent 2e0b36b commit 87e0799
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions packages/create-remdx/template/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"plugins": [
{
"lint": {
"unknownProperties": "error"
},
"name": "typescript-styled-plugin"
}
],
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2017"
},
"exclude": ["dist/", "node_modules"],
"include": ["**/*.ts", "**/*.tsx"]
}

0 comments on commit 87e0799

Please sign in to comment.