diff options
-rw-r--r-- | packages/react-docs-example/tsconfig.json | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/packages/react-docs-example/tsconfig.json b/packages/react-docs-example/tsconfig.json index 0e9cd3ddd..2f12470d6 100644 --- a/packages/react-docs-example/tsconfig.json +++ b/packages/react-docs-example/tsconfig.json @@ -1,4 +1,5 @@ { + "extends": "../../tsconfig", "compilerOptions": { "outDir": "./lib/", "jsx": "react", @@ -6,16 +7,7 @@ "strictNullChecks": false, "paths": { "*": ["node_modules/@types/*", "*"] - }, - "module": "commonjs", - "target": "es5", - "lib": ["es2017", "dom"], - "sourceMap": true, - "declaration": true, - "experimentalDecorators": true, - "noImplicitReturns": true, - "pretty": true, - "strict": true + } }, "include": ["./ts/**/*"] } |