2023-08-27 10:16:10 +00:00
|
|
|
{
|
2024-03-20 04:47:17 +00:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"outDir": "dist/compiled",
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"lib": ["ES2020", "dom"],
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@": ["src"],
|
|
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"/@/*": ["src/*"],
|
|
|
|
|
"vue": ["node_modules/vue"],
|
|
|
|
|
"tslib": ["node_modules/tslib/tslib.d.ts"]
|
2023-08-28 03:39:20 +00:00
|
|
|
}
|
2023-11-23 07:16:48 +00:00
|
|
|
}
|
2024-03-20 04:47:17 +00:00
|
|
|
}
|