Skip to content

Commit

Permalink
chore: Update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Marinerer committed Nov 6, 2024
1 parent 6440ddc commit 5344fa2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 31 deletions.
13 changes: 4 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
.DS_Store
.Docs.md
node_modules
dist
**/.vuepress/dist
coverage
temp
TODOs.md

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
*.log*

# Editor directories and files
.idea
Expand All @@ -22,6 +20,3 @@ pnpm-debug.log*
*.njsproj
*.sln
*.sw?

.cache
.eslintcache
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

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

44 changes: 22 additions & 22 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"sourceMap": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"sourceMap": true,
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,

"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": false,
"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": false,

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

0 comments on commit 5344fa2

Please sign in to comment.