From b61eb6fe4ae9b25ebcf0cd5e70f0736aaa093af5 Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Thu, 31 Jul 2025 01:49:18 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20=20type=20configuration?= =?UTF-8?q?=20file=20added?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.types.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tsconfig.types.json diff --git a/tsconfig.types.json b/tsconfig.types.json new file mode 100644 index 0000000..3d74853 --- /dev/null +++ b/tsconfig.types.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "declaration": true, + "emitDeclarationOnly": true, + "outDir": "./dist", + "baseUrl": ".", + "module": "NodeNext", + "target": "ESNext", + "moduleResolution": "nodenext", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "allowJs": true, + "lib": ["es2022", "dom"], + "paths": { + "@/*": ["src/*"], + "@visua/*": ["node_modules/@cellule-financiere-pmo/visua/output/*"] + } + }, + "include": ["src", "src/**/*.vue", "env.d.ts"], + "exclude": ["src/**/__tests__/*", "src/App.vue", "src/main.ts"] +}