diff options
Diffstat (limited to 'src/packages/vue/tsconfig.json')
-rw-r--r-- | src/packages/vue/tsconfig.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/packages/vue/tsconfig.json b/src/packages/vue/tsconfig.json new file mode 100644 index 0000000..b8e300a --- /dev/null +++ b/src/packages/vue/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "@repo/typescript-config/base.json", + "compilerOptions": { + "outDir": "dist", + "declaration": true, + "declarationDir": "dist", + "emitDeclarationOnly": true, + "module": "ESNext", + "moduleResolution": "Bundler", + "useDefineForClassFields": true + }, + "exclude": [ + "node_modules", + "dist", + "src/main.ts", + "src/components/Locusts.vue" + ], + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"] +} |