diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-10-11 18:44:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 18:44:00 +0800 |
commit | 8941b6cee5b56fab6d3b89ac8a899f21d5c86350 (patch) | |
tree | d958e69af58dfc6a959b2b7bb4f5f9fedd3884a6 /packages/dev-tools-pages/tsconfig.json | |
parent | a5a033c359a1a00a144ae0655080b4e6d0e43c88 (diff) | |
parent | e4351789d20df12ab8d70021acb5674bb59cae0c (diff) | |
download | dexon-0x-contracts-8941b6cee5b56fab6d3b89ac8a899f21d5c86350.tar.gz dexon-0x-contracts-8941b6cee5b56fab6d3b89ac8a899f21d5c86350.tar.zst dexon-0x-contracts-8941b6cee5b56fab6d3b89ac8a899f21d5c86350.zip |
Merge pull request #1125 from 0xProject/feature/starter-dev-tools-pages
Initial project scaffolding for dev tools pages
Diffstat (limited to 'packages/dev-tools-pages/tsconfig.json')
-rw-r--r-- | packages/dev-tools-pages/tsconfig.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/tsconfig.json b/packages/dev-tools-pages/tsconfig.json new file mode 100644 index 000000000..6421cd459 --- /dev/null +++ b/packages/dev-tools-pages/tsconfig.json @@ -0,0 +1,22 @@ +{ + "extends": "../../tsconfig", + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "outDir": "./transpiled/", + "jsx": "react", + "baseUrl": "./", + "allowJs": true, + "strictNullChecks": false, + "noImplicitThis": false, + // tsconfig.json at the monorepo root contains some options required for + // project references which do not work for website. We override those + // options here. + "declaration": false, + "declarationMap": false, + "composite": false, + "paths": { + "*": ["node_modules/@types/*", "*"] + } + }, + "include": ["./ts/**/*"] +} |