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.app.json

13 lines
320 B
JSON
Raw Normal View History

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