Adding VSCode jsconfig
This commit is contained in:
parent
63cbd51599
commit
6aa35d36c9
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
var Migrations = artifacts.require("./Migrations.sol");
|
||||
|
||||
module.exports = function(deployer) {
|
||||
deployer.deploy(Migrations);
|
||||
};
|
|
@ -1,5 +0,0 @@
|
|||
var SimpleStorage = artifacts.require("./SimpleStorage.sol");
|
||||
|
||||
module.exports = function(deployer) {
|
||||
deployer.deploy(SimpleStorage);
|
||||
};
|
Loading…
Reference in New Issue