2022-11-15 11:36:54 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-01-24 19:10:59 +03:00
|
|
|
"allowJs": true,
|
2023-01-23 11:40:57 +03:00
|
|
|
"baseUrl": ".",
|
|
|
|
"esModuleInterop": true,
|
2022-11-15 11:36:54 +03:00
|
|
|
"importHelpers": true,
|
2023-01-23 11:40:57 +03:00
|
|
|
"jsx": "preserve",
|
2023-02-02 12:44:18 +03:00
|
|
|
"lib": ["WebWorker", "DOM"],
|
2023-01-23 11:40:57 +03:00
|
|
|
"module": "esnext",
|
2022-11-15 11:36:54 +03:00
|
|
|
"moduleResolution": "node",
|
2023-02-19 14:28:31 +03:00
|
|
|
"experimentalDecorators": true,
|
2022-11-15 11:36:54 +03:00
|
|
|
"paths": {
|
2023-02-02 12:44:18 +03:00
|
|
|
"@/*": ["src/*"]
|
2022-11-15 11:36:54 +03:00
|
|
|
},
|
2023-01-23 11:40:57 +03:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "esnext",
|
2023-02-02 12:44:18 +03:00
|
|
|
"types": ["vite/client"]
|
2022-11-15 11:36:54 +03:00
|
|
|
},
|
2023-02-02 12:44:18 +03:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"]
|
2022-11-15 11:36:54 +03:00
|
|
|
}
|