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

TypeScript Support #78

Open
ampersarnie opened this issue Apr 28, 2023 · 2 comments
Open

TypeScript Support #78

ampersarnie opened this issue Apr 28, 2023 · 2 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@ampersarnie
Copy link
Member

No description provided.

@ampersarnie ampersarnie converted this from a draft issue Apr 28, 2023
@ampersarnie ampersarnie self-assigned this Apr 28, 2023
@ampersarnie ampersarnie added the enhancement New feature or request label May 5, 2023
@jrmd
Copy link
Member

jrmd commented May 9, 2023

This is a pretty sane tsconfig; Also added a eslint config that ive used. its pretty strict but works pretty well :)

tsconfig

{
  "compilerOptions": {
    "target": "esnext",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "checkJs": true,
    "skipLibCheck": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "preserve",
    "incremental": true,
    "noUncheckedIndexedAccess": true,
    "baseUrl": ".",
    "paths": {
      "~/*": ["./src/*"]
    }
  },
  "include": [
    ".eslintrc.cjs",
    "**/*.ts",
    "**/*.tsx",
    "**/*.cjs",
    "**/*.mjs",
  ],
  "exclude": ["node_modules"]
}

.eslintrc.js

const config = {
  overrides: [
    {
      extends: [
        "plugin:@typescript-eslint/recommended-requiring-type-checking",
      ],
      files: ["*.ts", "*.tsx"],
      parserOptions: {
        project: path.join(__dirname, "tsconfig.json"),
      },
    },
  ],
  parser: "@typescript-eslint/parser",
  parserOptions: {
    project: path.join(__dirname, "tsconfig.json"),
  },
  plugins: ["@typescript-eslint"],
  extends: ["plugin:@typescript-eslint/recommended"],
  rules: {
    "@typescript-eslint/consistent-type-imports": [
      "warn",
      {
        prefer: "type-imports",
        fixStyle: "inline-type-imports",
      },
    ],
    "@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
  },
};

@jrmd
Copy link
Member

jrmd commented May 9, 2023

Eslint rules - https://typescript-eslint.io/rules

@ampersarnie ampersarnie added this to the v1.3 milestone May 22, 2023
@ampersarnie ampersarnie moved this from To do to In Progress in Build Tools Jul 21, 2023
@ampersarnie ampersarnie moved this from In Progress to In Review in Build Tools Jul 28, 2023
@ampersarnie ampersarnie moved this from In Review to Done in Build Tools Jan 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: Done
Development

No branches or pull requests

2 participants