diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 00000000..03732c94 --- /dev/null +++ b/jsconfig.json @@ -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" + ] +} \ No newline at end of file diff --git a/migrations/1_initial_migration.js b/migrations/1_initial_migration.js deleted file mode 100644 index 4d5f3f9b..00000000 --- a/migrations/1_initial_migration.js +++ /dev/null @@ -1,5 +0,0 @@ -var Migrations = artifacts.require("./Migrations.sol"); - -module.exports = function(deployer) { - deployer.deploy(Migrations); -}; diff --git a/migrations/2_deploy_contracts.js b/migrations/2_deploy_contracts.js deleted file mode 100644 index 71ffad92..00000000 --- a/migrations/2_deploy_contracts.js +++ /dev/null @@ -1,5 +0,0 @@ -var SimpleStorage = artifacts.require("./SimpleStorage.sol"); - -module.exports = function(deployer) { - deployer.deploy(SimpleStorage); -};