Skip to content

Commit

Permalink
Merge pull request #119 from martillansky/testnets
Browse files Browse the repository at this point in the history
refactor: indent tsconfig and vercel
  • Loading branch information
martillansky authored Oct 29, 2024
2 parents 2e0cd4d + 129a3da commit 8fff3ef
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 36 deletions.
70 changes: 36 additions & 34 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,38 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"baseUrl": "./src/",
"outDir": "build/dist",
"module": "esnext",
"sourceMap": true,
"allowJs": true,
"moduleResolution": "node",
"rootDir": "src",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"removeComments": true,
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [{ "name": "next" }],
"paths": {
"@*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"compilerOptions": {
"experimentalDecorators": true,
"baseUrl": "./src/",
"outDir": "build/dist",
"module": "esnext",
"sourceMap": true,
"allowJs": true,
"moduleResolution": "node",
"rootDir": "src",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"removeComments": true,
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{ "name": "next" }
],
"paths": {
"@*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
9 changes: 7 additions & 2 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"rewrites": [{ "source": "/(.*)", "destination": "/" }]
}
"rewrites": [
{
"source": "/(.*)",
"destination": "/"
}
]
}

0 comments on commit 8fff3ef

Please sign in to comment.