Ensure yarn build exists for mono yarn workspaces (#22)
* Ensure yarn build exists for mono yarn workspaces * Use publish compatible tsconfig * Ignore test in eslintpull/2435/head
parent
5afcc623c3
commit
5f7015cf3f
@ -1,24 +0,0 @@ |
||||
{ |
||||
"compilerOptions": { |
||||
"declaration": true, |
||||
"declarationMap": true, |
||||
"esModuleInterop": true, |
||||
"forceConsistentCasingInFileNames": true, |
||||
"incremental": false, |
||||
"lib": ["es2015", "es5", "dom"], |
||||
"module": "commonjs", |
||||
"moduleResolution": "node", |
||||
"noEmitOnError": true, |
||||
"noFallthroughCasesInSwitch": true, |
||||
"noImplicitAny": false, |
||||
"noImplicitReturns": true, |
||||
"noUnusedLocals": true, |
||||
"preserveSymlinks": true, |
||||
"preserveWatchOutput": true, |
||||
"pretty": false, |
||||
"sourceMap": true, |
||||
"target": "es6", |
||||
"strict": true, |
||||
"resolveJsonModule": true |
||||
} |
||||
} |
@ -1,16 +1,34 @@ |
||||
{ |
||||
"extends": "./tsconfig.base.json", |
||||
"compilerOptions": { |
||||
"declaration": true, |
||||
"declarationMap": true, |
||||
"esModuleInterop": true, |
||||
"forceConsistentCasingInFileNames": true, |
||||
"incremental": false, |
||||
"lib": ["es2015", "es5", "dom"], |
||||
"module": "commonjs", |
||||
"moduleResolution": "node", |
||||
"noEmitOnError": true, |
||||
"noFallthroughCasesInSwitch": true, |
||||
"noImplicitAny": false, |
||||
"noImplicitReturns": true, |
||||
"noUnusedLocals": true, |
||||
"preserveSymlinks": true, |
||||
"preserveWatchOutput": true, |
||||
"pretty": false, |
||||
"sourceMap": true, |
||||
"target": "es6", |
||||
"strict": true, |
||||
"resolveJsonModule": true, |
||||
"outDir": "./dist", |
||||
"rootDir": "./", |
||||
"rootDir": "./src", |
||||
}, |
||||
"exclude": [ |
||||
"./node_modules/", |
||||
"./scripts/", |
||||
"./test/", |
||||
"./dist/", |
||||
"./src/types/hardhat.d.ts", |
||||
"hardhat.config.ts" |
||||
], |
||||
"include": [ |
||||
"./src", |
||||
"./test", |
||||
], |
||||
"files": ["hardhat.config.ts"] |
||||
} |
||||
|
@ -1,15 +0,0 @@ |
||||
{ |
||||
"extends": "./tsconfig.base.json", |
||||
"compilerOptions": { |
||||
"outDir": "./dist", |
||||
"rootDir": "./src", |
||||
}, |
||||
"exclude": [ |
||||
"./node_modules/", |
||||
"./scripts/", |
||||
"./test/", |
||||
"./dist/", |
||||
"./src/types/hardhat.d.ts", |
||||
"hardhat.config.ts" |
||||
], |
||||
} |
Loading…
Reference in new issue