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

24 lines
597 B
JSON
Raw 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",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
2024-02-06 06:16:28 -05:00
"plugins-runtime": ["libs/plugins-runtime/src/index.ts"],
2024-02-19 03:54:57 -05:00
"plugins-styles": ["libs/plugins-styles/src/index.ts"]
2024-02-01 08:08:51 -05:00
}
},
"exclude": ["node_modules", "tmp"]
}