Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove directive comments for deno #69

Merged
merged 2 commits into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion template-deno-lit-ts/src/my-element.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { LitElement, css, html } from 'lit'
import { customElement, property } from 'lit/decorators.js'
// @ts-expect-error Unable to infer type at the moment
import litLogo from './assets/lit.svg'

/**
Expand Down
1 change: 0 additions & 1 deletion template-deno-preact-ts/src/app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import './app.css'
import { useState } from 'preact/hooks'
// @ts-expect-error Unable to infer type at the moment
import preactLogo from './assets/preact.svg'

export function App() {
Expand Down
2 changes: 0 additions & 2 deletions template-deno-react-ts/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import './App.css'
// @deno-types="@types/react"
import { useState } from 'react'
// @ts-expect-error Unable to infer type at the moment
import reactLogo from './assets/react.svg'

function App() {
Expand Down
2 changes: 0 additions & 2 deletions template-deno-react-ts/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import './index.css'
// @deno-types="@types/react"
import { StrictMode } from 'react'
// @deno-types="@types/react-dom/client"
import { createRoot } from 'react-dom/client'
import App from './App.tsx'

Expand Down
1 change: 0 additions & 1 deletion template-deno-react/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import './App.css'
// @deno-types="@types/react"
import { useState } from 'react'
import reactLogo from './assets/react.svg'

Expand Down
2 changes: 0 additions & 2 deletions template-deno-react/src/main.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import './index.css'
// @deno-types="@types/react"
import { StrictMode } from 'react'
// @deno-types="@types/react-dom/client"
import { createRoot } from 'react-dom/client'
import App from './App.jsx'

Expand Down
1 change: 0 additions & 1 deletion template-deno-solid-ts/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import './App.css'
import { createSignal } from 'solid-js'
// @ts-expect-error Unable to infer type at the moment
import solidLogo from './assets/solid.svg'

function App() {
Expand Down