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

13 lines
320 B
JSON
Raw Normal View History

2024-02-27 11:48:27 +01:00
{
"extends": "./tsconfig.json",
"compilerOptions": {
2024-05-29 14:44:07 +02:00
"outDir": "../dist/out-tsc",
"module": "ESNext",
"moduleResolution": "Bundler",
"declaration": true,
"types": ["node", "vite/client"]
2024-02-27 11:48:27 +01:00
},
2024-05-29 14:44:07 +02:00
"include": ["src/**/*.ts"],
"exclude": ["vite.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"]
2024-02-27 11:48:27 +01:00
}