Git Product home page Git Product logo

Comments (13)

Raynos avatar Raynos commented on July 18, 2024 2

I merged the PR that adds type definitions and released [email protected]

from error.

Raynos avatar Raynos commented on July 18, 2024 1

I might add tsdocstandard to this repo.

Please remind me in a few days :D

from error.

Raynos avatar Raynos commented on July 18, 2024

I've started this in a PR #24

from error.

Gounlaf avatar Gounlaf commented on July 18, 2024

Thanks !

from error.

Gounlaf avatar Gounlaf commented on July 18, 2024

Hi @Raynos,

I've installed version 10.3.0 but my IDE (WebStorm) is still complaining about not finding definitions (TS7016).
As a "provider" I understand you provide Types via tsdocstandard
As a "consumer" does I need to add something? (it might be not supported by WebStorm =/)

Thanks,

Regards.

from error.

Raynos avatar Raynos commented on July 18, 2024

@Gounlaf

Can you share the tsconfig.json for your project ?

from error.

Raynos avatar Raynos commented on July 18, 2024

Types are provided by typescript btw.

Tsdocstandard is just a linter that makes it easier to add jsdoc to a js library and write type definitions.

from error.

Gounlaf avatar Gounlaf commented on July 18, 2024

@Raynos sure, see below.

I use typescript 3.8.3 and also a minimal configuration of typescript-eslint

{
  "compilerOptions": {
    "target": "ES2019",
    "module": "commonjs",
    "sourceMap": true,
    "outDir": "./build",
    "strict": true,
    "noImplicitAny": true,
    "alwaysStrict": true,
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "baseUrl": "./src",
    "paths": {
      "@i/*": ["i/*"],
      "@have/*": ["have/*"],
      "@some/*": ["some/*"],
      "@modules/*": ["modules/*"],
      "@alias/*": ["alias/*"]
    },
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true
  },
  "include": [
    "src/**/*"
  ],
  "exclude": [
    "node_modules"
  ]
}

from error.

Raynos avatar Raynos commented on July 18, 2024

It's quite frustrating that typescript does not type check the implementation of error.

I tried your tsconfig and added

  "include": [
    "src/**/*",
    "node_modules/error"
  ],

Basically telling typescript that node_modules/error exists and it started type checking properly.

However now i have build/node_modules/error ...

from error.

Raynos avatar Raynos commented on July 18, 2024

microsoft/TypeScript#33136

from error.

Raynos avatar Raynos commented on July 18, 2024

There's another important property in tsconfig.json

  "allowJs": true,

from error.

Raynos avatar Raynos commented on July 18, 2024

Looks like another user found a similar workaround ( microsoft/TypeScript#33136 (comment) )

from error.

Gounlaf avatar Gounlaf commented on July 18, 2024

Hi,

Sorry for the delay.
Thanks for your answers; I still have not test yet, I will confirm here if it's OK with solution you gave me.

from error.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.