0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-09 00:10:12 -05:00
penpot-plugins/apps/example-styles/tsconfig.json

24 lines
495 B
JSON
Raw Normal View History

2024-02-27 05:48:27 -05:00
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "ESNext",
"lib": ["ESNext", "DOM"],
2024-05-29 07:44:07 -05:00
"forceConsistentCasingInFileNames": true,
2024-02-27 05:48:27 -05:00
"strict": true,
2024-05-29 07:44:07 -05:00
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
2024-02-27 05:48:27 -05:00
"noImplicitReturns": true,
2024-05-29 07:44:07 -05:00
"noFallthroughCasesInSwitch": true
2024-02-27 05:48:27 -05:00
},
2024-05-29 07:44:07 -05:00
"files": [],
"include": [],
2024-02-27 05:48:27 -05:00
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.spec.json"
}
]
}