0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-21 22:22:45 -05:00
penpot-plugins/libs/plugins-runtime/tsconfig.json

24 lines
495 B
JSON
Raw Normal View History

2024-02-01 14:08:51 +01:00
{
2024-02-06 12:16:28 +01:00
"extends": "../../tsconfig.base.json",
2024-02-01 14:08:51 +01:00
"compilerOptions": {
2024-05-07 10:28:40 +02:00
"module": "ESNext",
"lib": ["ESNext", "DOM"],
2024-02-01 14:08:51 +01:00
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.lib.json"
},
{
"path": "./tsconfig.spec.json"
}
]
}