-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.gen-dts.json
40 lines (39 loc) · 1.01 KB
/
tsconfig.gen-dts.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* File: tsconfig.gen-dts.json
* Project: @inventures/react-lib
* File Created: Friday, 31st July 2020 3:21:30 pm
* Author: Gabriel Ulloa ([email protected])
* -----
* Last Modified: Friday, 14th August 2020 2:13:31 pm
* Modified By: Gabriel Ulloa ([email protected])
* -----
* Copyright 2019 - 2020 Incrementa Ventures SpA. ALL RIGHTS RESERVED
* Terms and conditions defined in license.txt
* -----
* Inventures - www.inventures.cl
*/
{
"compilerOptions": {
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist",
"jsx": "react",
"lib": ["es2017", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"strictNullChecks": false,
"target": "es5",
"esModuleInterop": true
},
"include": ["./src/*", "./src/**/*"],
"exclude": [
"./src/**/**.test.tsx",
"./src/**/**.test.ts",
"./src/**/**.stories.ts",
"./src/**/**.stories.tsx",
"./src/**/examples/**",
"./src/config/**"
]
}