diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-05 14:10:55 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-03-05 14:10:55 +0800 |
commit | 874e6678491d25aa7db300d68bdcb73863685c62 (patch) | |
tree | 691db53254e10b93c0a2c21d63f8a1accd51e3f0 /packages/react-shared/tsconfig.json | |
parent | 1817f6eaf63a5fa4302ad9ef41ad13b1555a8733 (diff) | |
download | dexon-sol-tools-874e6678491d25aa7db300d68bdcb73863685c62.tar dexon-sol-tools-874e6678491d25aa7db300d68bdcb73863685c62.tar.gz dexon-sol-tools-874e6678491d25aa7db300d68bdcb73863685c62.tar.bz2 dexon-sol-tools-874e6678491d25aa7db300d68bdcb73863685c62.tar.lz dexon-sol-tools-874e6678491d25aa7db300d68bdcb73863685c62.tar.xz dexon-sol-tools-874e6678491d25aa7db300d68bdcb73863685c62.tar.zst dexon-sol-tools-874e6678491d25aa7db300d68bdcb73863685c62.zip |
Bug fixes
Diffstat (limited to 'packages/react-shared/tsconfig.json')
-rw-r--r-- | packages/react-shared/tsconfig.json | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/packages/react-shared/tsconfig.json b/packages/react-shared/tsconfig.json index 69e8cdc20..6e71fb2e4 100644 --- a/packages/react-shared/tsconfig.json +++ b/packages/react-shared/tsconfig.json @@ -1,23 +1,14 @@ { + "extends": "../../tsconfig", "compilerOptions": { - "module": "commonjs", - "target": "es5", - "lib": ["es2017", "dom"], - "sourceMap": true, - "noImplicitReturns": true, - "allowSyntheticDefaultImports": true, "outDir": "./lib/", "jsx": "react", "baseUrl": "./", - "allowJs": true, "strictNullChecks": false, "noImplicitThis": false, - "declaration": false, "paths": { "*": ["node_modules/@types/*", "*"] - }, - "pretty": true, - "strict": true + } }, "include": ["./src/ts/**/*"] } |