zappyzep/dashboard/tsconfig.json

26 lines
595 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"moduleResolution": "bundler",
2019-07-22 00:27:18 +03:00
"module": "esnext",
"target": "es2018",
2019-07-22 00:27:18 +03:00
"sourceMap": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": false,
2021-09-11 19:06:51 +03:00
"lib": ["esnext", "dom"],
2024-11-02 14:55:29 +02:00
"types": ["node"],
"baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true
},
"include": ["src/**/*.ts", "src/**/*.vue", "./ts-vue-shim.d.ts"],
"references": [
{
"path": "../shared/tsconfig.json"
}
]
}