2019-06-22 18:52:24 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-03-30 13:33:29 +00:00
|
|
|
"moduleResolution": "bundler",
|
2019-07-22 00:27:18 +03:00
|
|
|
"module": "esnext",
|
2019-11-27 21:43:39 +02:00
|
|
|
"target": "es2018",
|
2019-07-22 00:27:18 +03:00
|
|
|
"sourceMap": true,
|
2019-06-22 18:52:24 +03:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2019-10-10 21:58:00 +03:00
|
|
|
"strict": false,
|
2021-09-11 19:06:51 +03:00
|
|
|
"lib": ["esnext", "dom"],
|
2019-11-07 22:53:11 +02:00
|
|
|
"baseUrl": ".",
|
2019-06-22 18:52:24 +03:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
2024-03-02 09:24:07 +00:00
|
|
|
"allowJs": true
|
|
|
|
},
|
2024-03-30 13:33:29 +00:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.vue", "./ts-vue-shim.d.ts"],
|
2024-03-02 09:24:07 +00:00
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "../shared/tsconfig.json"
|
2019-11-02 22:11:26 +02:00
|
|
|
}
|
2024-03-02 09:24:07 +00:00
|
|
|
]
|
2019-06-22 18:52:24 +03:00
|
|
|
}
|