zappyzep/dashboard/tsconfig.json
2024-11-02 14:55:29 +02:00

25 lines
595 B
JSON

{
"compilerOptions": {
"moduleResolution": "bundler",
"module": "esnext",
"target": "es2018",
"sourceMap": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": false,
"lib": ["esnext", "dom"],
"types": ["node"],
"baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true
},
"include": ["src/**/*.ts", "src/**/*.vue", "./ts-vue-shim.d.ts"],
"references": [
{
"path": "../shared/tsconfig.json"
}
]
}