flugin-tsconfig
v1.0.1
Published
A based TSConfig for working on plugins for Figma, or utils for it.
Downloads
142
Readme
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
}
}