23 lines
581 B
JSON
23 lines
581 B
JSON
|
{
|
||
|
"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"]
|
||
|
}
|