1.0.1 • Published 7 months ago

flugin-tsconfig v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

My tsconfig base configuration for working on plugins for Figma.

Add the package to your "devDependencies":

npm i -D flugin-tsconfig

Extend your tsconfig.json:

"extends": "flugin-tsconfig/tsconfig.json"

Configuration

{
    "exclude": ["node_modules"],
    "compilerOptions": {
      "module": "ESNext",
      "target": "ES2017",
      "moduleResolution": "bundler",
      "declaration": true,
      "strict": true,
      "noEmit": true,
      "skipLibCheck": true,
      "esModuleInterop": true,
      "verbatimModuleSyntax": true,
      "isolatedModules": true,
      "resolveJsonModule": true,
      "removeComments": false,
      "composite": false,
      "noErrorTruncation": true,
      "forceConsistentCasingInFileNames": true
    }
  }
1.0.1

7 months ago

1.0.0

7 months ago