Skip to content

Commit

Permalink
build: Update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Marinerer committed Nov 11, 2024
1 parent 3d61a95 commit c7c9ad3
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 12 deletions.
26 changes: 26 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 18 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
{
"compilerOptions": {
"baseUrl": ".",
// "baseUrl": ".",
"outDir": "dist",
"sourceMap": true,
"target": "ES2022",
"lib": ["ESNext"],
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"skipLibCheck": true,

"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": false,
/* Bundler mode */
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"removeComments": false,
"jsx": "preserve",
"lib": ["ESNext", "DOM"]
"useUnknownInCatchVariables": false
},
"include": ["src", "packages/*/src"],
"exclude": ["node_modules", "packages/**/dist", "examples/**/dist", "**/*.spec.ts"]
"include": ["./packages"],
"exclude": ["node_modules", "**/dist", "**/__tests__"]
}

0 comments on commit c7c9ad3

Please sign in to comment.