Skip to content

Commit

Permalink
fix: update eslint rules for new template
Browse files Browse the repository at this point in the history
  • Loading branch information
kabaros committed Jul 31, 2024
1 parent d7b8d14 commit e970f5a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
# These are to avoid lint errors like 'cannot find module App.jsx'
cli/config/init/entrypoint.jsx
cli/config/init/App.test.jsx
cli/config/init-typescript/entrypoint.jsx
cli/config/init-typescript/App.test.jsx
20 changes: 10 additions & 10 deletions cli/config/init-typescript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"compilerOptions": {
"noEmit": true,
"skipLibCheck": true,
"allowJs": true,
"jsx": "react",
"esModuleInterop": true,
"target": "ESNext",
"module": "esnext",
"moduleResolution": "node",
"allowImportingTsExtensions": true
"noEmit": true,
"skipLibCheck": true,
"allowJs": true,
"jsx": "react",
"esModuleInterop": true,
"target": "ESNext",
"module": "esnext",
"moduleResolution": "node",
"allowImportingTsExtensions": true
},
"include": ["./src/**/*"]
}
}

0 comments on commit e970f5a

Please sign in to comment.