diff options
Diffstat (limited to 'packages/react-docs-example/tsconfig.json')
-rw-r--r-- | packages/react-docs-example/tsconfig.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/react-docs-example/tsconfig.json b/packages/react-docs-example/tsconfig.json new file mode 100644 index 000000000..3e5c9e435 --- /dev/null +++ b/packages/react-docs-example/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "outDir": "./lib/", + "jsx": "react", + "baseUrl": "./", + "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": ["./example/ts/**/*"] +} |