Skip to content

Commit

Permalink
feat: tsconfig (#378)
Browse files Browse the repository at this point in the history
* feat: tsconfig

* chore: cleanup

* chore: cleanup

* fix: lint

* fix: path aliases

* chore: remove readme and gitignore
  • Loading branch information
sasicodes committed Nov 18, 2022
1 parent 69516ed commit 6bfd3ab
Show file tree
Hide file tree
Showing 28 changed files with 218 additions and 12,566 deletions.
24 changes: 13 additions & 11 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

title: ""
labels: ""
assignees: ""
---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
7 changes: 3 additions & 4 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

title: ""
labels: ""
assignees: ""
---

**Is your feature request related to a problem? Please describe.**
Expand Down
3 changes: 1 addition & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ Closes #(issue)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Minor changes in old functionality


## Checklist

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented on my code, particularly in hard-to-understand areas
- [ ] My changes generate no new warnings
- [ ] My changes generate no new warnings
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ coverage
# next.js
.next/
out/
.swc
build

# misc
Expand All @@ -26,6 +27,12 @@ yarn-error.log*
.env.development.local
.env.test.local
.env.production.local

.env
# turbo
.turbo

# vercel
.vercel

# typescript
*.tsbuildinfo
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
out
.next
.turbo
.github
File renamed without changes.
36 changes: 0 additions & 36 deletions apps/embed/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions apps/embed/.prettierignore

This file was deleted.

1 change: 0 additions & 1 deletion apps/embed/README.md

This file was deleted.

5 changes: 5 additions & 0 deletions apps/embed/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
1 change: 1 addition & 0 deletions apps/embed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"react-icons": "^4.6.0"
},
"devDependencies": {
"tsconfig": "*",
"eslint-config-weblint": "*",
"@types/mixpanel-browser": "^2.38.0",
"@types/node": "18.11.9",
Expand Down
2 changes: 1 addition & 1 deletion apps/embed/src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../styles/globals.css'
import '../styles/index.css'
import '@vime/core/themes/default.css'

import { MIXPANEL_API_HOST, MIXPANEL_TOKEN } from '@utils/constants'
Expand Down
File renamed without changes.
19 changes: 3 additions & 16 deletions apps/embed/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
{
"extends": "tsconfig/nextjs.json",
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"noEmit": true,
"paths": {
"@utils*": ["src/utils*"],
"@components*": ["src/components*"],
"@lib*": ["src/lib*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/styles/index.css"]
}
Loading

3 comments on commit 6bfd3ab

@vercel
Copy link

@vercel vercel bot commented on 6bfd3ab Nov 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

web-git-main-lenstube.vercel.app
lenstube.xyz
web-lenstube.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 6bfd3ab Nov 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

embed – ./apps/embed

embed.lenstube.xyz
embed-git-main-lenstube.vercel.app
embed-lenstube.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 6bfd3ab Nov 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

assets – ./apps/assets

assets-lenstube.vercel.app
assets-git-main-lenstube.vercel.app
assets.lenstube.xyz

Please sign in to comment.