diff --git a/.gitignore b/.gitignore index 1da27e1bc4162a0f8ebe40d59018ac59074b04fe..c8978582836316fe31349d7b26e9a71b80889732 100755 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,6 @@ yarn-error.log yarn.lock package-lock.json *bak -jsconfig.json # visual studio code .history \ No newline at end of file diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..5475bee038ba8a832e8b29d91bd08aa7af95d3ad --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "baseUrl": ".", + "paths": { + "components/*": ["./src/components/*"] + } + } +}