DeepCodeGeniusWeb-vscode/tsconfig.json
Rankin Zheng bcdc78d65f Update import paths with alias
- Replace relative import paths with '@/...' alias in multiple files.
- Update tsconfig.json to include paths configuration.
- Add alias configuration to webpack.config.js.
2023-06-13 17:03:48 +08:00

26 lines
349 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"lib": [
"ES2020",
"es6",
"dom"
],
"outDir": "./dist",
"sourceMap": true,
"rootDir": "src",
"strict": true,
"jsx": "react",
"esModuleInterop": true,
"noImplicitAny": false,
"paths": {
"@/*": [
"./src/*"
]
}
},
"exclude": [
"test"
]
}