Skip to content

Commit

Permalink
fix parcel ts bug
Browse files Browse the repository at this point in the history
fix parcel ts bug
  • Loading branch information
ShaMan123 committed Nov 16, 2023
1 parent 6d8e176 commit 584ae88
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .codesandbox/templates/vanilla/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"fabric": "file:../../.."
},
"devDependencies": {
"@parcel/transformer-typescript-tsc": "^2.7.0",
"parcel": "^2.9.3",
"typescript": "^5.0.2"
"@parcel/transformer-typescript-tsc": "^2.10.3",
"parcel": "^2.10.3",
"typescript": "^5.2.2"
},
"keywords": [
"vanilla",
Expand Down
24 changes: 24 additions & 0 deletions .codesandbox/templates/vanilla/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "es2017"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext",
"incremental": true
},
"exclude": ["node_modules"],
"include": ["**/*.ts"]
}

0 comments on commit 584ae88

Please sign in to comment.