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

34 lines
774 B
JSON
Raw Normal View History

2024-03-07 04:34:06 -05:00
{
"compilerOptions": {
2024-05-24 05:51:08 -05:00
"target": "es2022",
"useDefineForClassFields": false,
2024-03-07 04:34:06 -05:00
"esModuleInterop": true,
2024-05-24 05:51:08 -05:00
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
2024-03-07 04:34:06 -05:00
"noImplicitReturns": true,
2024-05-24 05:51:08 -05:00
"noFallthroughCasesInSwitch": true
2024-03-07 04:34:06 -05:00
},
2024-05-24 05:51:08 -05:00
"files": [],
"include": [],
2024-03-07 04:34:06 -05:00
"references": [
{
"path": "./tsconfig.app.json"
},
{
2024-05-24 05:51:08 -05:00
"path": "./tsconfig.editor.json"
},
{
"path": "./tsconfig.plugin.json"
2024-03-07 04:34:06 -05:00
}
2024-05-24 05:51:08 -05:00
],
"extends": "../../tsconfig.base.json",
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
2024-03-07 04:34:06 -05:00
}