ruoyi-geek-App/tsconfig.json

25 lines
627 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-11-23 07:16:48 +00:00
"importHelpers": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2024-01-14 20:24:40 +00:00
"downlevelIteration":true,
2023-11-23 07:16:48 +00:00
"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
}