forked from asgardeo/asgardeo-auth-react-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 789 Bytes
/
tsconfig.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
{
"compilerOptions": {
"esModuleInterop": true,
"target": "ES6",
"module": "ESNext",
"moduleResolution": "node",
"noImplicitAny": false,
"jsx": "react",
"resolveJsonModule": true,
"sourceMap": true,
"noLib": false,
"suppressImplicitAnyIndexErrors": true,
"experimentalDecorators": true,
"declaration": true,
"declarationDir": "./dist/types",
"composite": true,
"declarationMap": true,
"baseUrl": "src",
"paths": {
"*": ["types/*"]
},
"outDir": "./dist",
"skipLibCheck": true
},
"compileOnSave": false,
"exclude": ["node_modules", "test-configs", "src/**/tests/*", "**/*.test.ts", "**/node_modules"]
}