1.0.1 • Published 7 months ago
flugin-tsconfig v1.0.1
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
}
}