1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-10-03 20:57:55 +03:00

chore: use jsconfig instead of IDE config

This commit is contained in:
louistiti 2022-01-25 20:20:49 +08:00
parent e6246d1f8f
commit 93a138f77c
No known key found for this signature in database
GPG Key ID: 7ECA3DD523793FE6
2 changed files with 9 additions and 10 deletions

10
ide.js
View File

@ -1,10 +0,0 @@
/**
* Allow babel-plugin-module-resolver aliases for JetBrains IDEs
*/
System.config({
paths: {
'@@/*': './*',
'@/*': './server/src/*'
}
})

9
jsconfig.json Normal file
View File

@ -0,0 +1,9 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@@/*": ["./*"],
"@/*": ["./server/src/*"]
}
}
}