Adding VSCode jsconfig

This commit is contained in:
Adolfo Panizo 2018-03-08 10:35:24 +01:00
parent 63cbd51599
commit 6aa35d36c9
3 changed files with 18 additions and 10 deletions

18
jsconfig.json Normal file
View File

@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "es2017",
"allowSyntheticDefaultImports": false,
"baseUrl": "./",
"paths": {
"~/*":["src/*"],
"@/*":["gnosis-safe-contracts/build/contracts"]
}
},
"exclude": [
"node_modules",
"build_webpack",
"config",
"public",
"scripts"
]
}

View File

@ -1,5 +0,0 @@
var Migrations = artifacts.require("./Migrations.sol");
module.exports = function(deployer) {
deployer.deploy(Migrations);
};

View File

@ -1,5 +0,0 @@
var SimpleStorage = artifacts.require("./SimpleStorage.sol");
module.exports = function(deployer) {
deployer.deploy(SimpleStorage);
};