ruoyi-geek-App/tsconfig.json

19 lines
405 B
JSON
Raw Normal View History

{
"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,
"lib": ["es2017"],
"baseUrl": "./",
"paths": {
"@": [
"src"
],
"@/*": [
"src/*"
],
"vue": ["node_modules/vue"]
2023-08-27 11:20:55 +00:00
},
2023-08-28 03:39:20 +00:00
}
}