0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-04 13:50:13 -05:00
penpot-plugins/tsconfig.base.json

25 lines
656 B
JSON
Raw Permalink Normal View History

2024-02-01 08:08:51 -05:00
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
2024-05-24 05:51:08 -05:00
"lib": ["es2022", "dom"],
2024-02-01 08:08:51 -05:00
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
2024-03-27 07:57:02 -05:00
"@penpot/plugin-types": ["libs/plugin-types/index.d.ts"],
2024-02-06 06:16:28 -05:00
"plugins-runtime": ["libs/plugins-runtime/src/index.ts"],
2024-02-20 03:15:10 -05:00
"plugins-styles/*": ["libs/plugins-styles/src/*"]
2024-02-01 08:08:51 -05:00
}
},
"exclude": ["node_modules", "tmp"]
}