0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-06 14:50:21 -05:00
penpot-plugins/tools/tsconfig.json

21 lines
417 B
JSON
Raw Normal View History

2024-07-04 02:29:27 -05:00
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"module": "ESNext",
"lib": ["ESNext"],
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"types": [
"node"
]
},
"files": [],
"include": [
"**/*.ts",
]
}