2023-08-27 10:16:10 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames":true,
|
2023-08-27 11:20:55 +00:00
|
|
|
"outDir": "dist/compiled",
|
2023-08-27 11:02:55 +00:00
|
|
|
"allowJs": true,
|
2023-08-27 12:42:26 +00:00
|
|
|
"lib": ["es2017"],
|
2023-08-27 10:16:10 +00:00
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@": [
|
|
|
|
|
"src"
|
|
|
|
|
],
|
|
|
|
|
"@/*": [
|
|
|
|
|
"src/*"
|
|
|
|
|
],
|
|
|
|
|
"vue": ["node_modules/vue"]
|
2023-08-27 11:20:55 +00:00
|
|
|
},
|
2023-08-27 10:16:10 +00:00
|
|
|
},
|
2023-08-27 11:54:22 +00:00
|
|
|
"include": ["src/**/*.ts", "src/plugins/index.js"]
|
2023-08-27 10:16:10 +00:00
|
|
|
}
|