Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tsconfig to generate map and definition files #100

Merged
merged 25 commits into from Jun 12, 2019
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
dcc158d
update top-level tsconfig to generate definitions
hrharder Jun 12, 2019
0ac750e
kosu.js: formatting tsconfig
hrharder Jun 12, 2019
feaa864
gov-portal-helper: v0.1.8
hrharder Jun 12, 2019
55f2f26
kosu.js: v0.1.0-alpha.6
hrharder Jun 12, 2019
6d36d41
tsc-config: v0.0.2
hrharder Jun 12, 2019
1a7d6ac
tsc-config: v0.0.2
hrharder Jun 12, 2019
6909aa9
gov-portal-helper: remove unused import
hrharder Jun 12, 2019
4b3fb61
monorepo: regenerate lockfile
hrharder Jun 12, 2019
0c88f4f
gov-portal-helper: fix bignumber version
hrharder Jun 12, 2019
067d28a
create-portal-helper: using new API from kosu.js
hrharder Jun 12, 2019
b8bea6f
create-portal-helper: v0.1.0-alpha.7
hrharder Jun 12, 2019
e5e1050
gov-portal-helper: fixing getListing method call
hrharder Jun 12, 2019
bc95830
mono: regenerate lockfile
hrharder Jun 12, 2019
76f25b4
tsc-config: v0.1.0
hrharder Jun 12, 2019
057c8c9
mono: typo in package definitions
hrharder Jun 12, 2019
60618da
kosu.js: use tsconfig from npm
hrharder Jun 12, 2019
c92920c
kosu-system-contracts: use tsc from npm
hrharder Jun 12, 2019
fdbfc35
gov-portal-helper: use tsconfig from npm
hrharder Jun 12, 2019
7324816
create-portal-helper: use tscconfig from npm
hrharder Jun 12, 2019
137dc94
kosu.js: v0.1.0-alpha.7
hrharder Jun 12, 2019
382c73d
create-portal-helper: v0.1.0-alpha.8
hrharder Jun 12, 2019
4c46c09
gov-portal-helper: v0.1.8
hrharder Jun 12, 2019
70be2db
kosu-system-contracts: v0.1.0-alpha.5
hrharder Jun 12, 2019
9339edf
monorepo: running prettier
hrharder Jun 12, 2019
9ffa4d0
Removing an only that got checked in.
Freydal Jun 12, 2019
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

tsc-config: v0.0.2

  • Loading branch information
hrharder committed Jun 12, 2019
commit 6d36d4103fc930051b3ceff5a2151d323501afdf
@@ -1,7 +1,7 @@
{
"name": "@kosu/tsc-config",
"private": false,
"version": "0.0.1",
"version": "0.0.2",
"description": "TypeScript compiler base configuration for TS projects at Paradigm Labs.",
"main": "tsconfig.json",
"repository": "https://github.com/ParadigmFoundation/kosu-monorepo/blob/master/packages/tsc-config/README.md",
@@ -10,4 +10,4 @@
"publishConfig": {
"access": "public"
}
}
}
@@ -1,24 +1,17 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": ["es2017", "dom"],
"removeComments": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"target": "es2015",
"downlevelIteration": true,
"noImplicitReturns": true,
"pretty": true,
"skipLibCheck": true,
"typeRoots": ["node_modules/@types"],
"strict": true,
// These settings are required for TypeScript project references
"composite": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"typeRoots": [
"node_modules/@types"
],
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},

"include": [],
"references": [{ "path": "../tslint-config/tslint.json" }]
}
}
}
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.