-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (20 loc) · 484 Bytes
/
Copy pathtsconfig.json
File metadata and controls
23 lines (20 loc) · 484 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"rootDir": "src",
"outDir": "lib",
"target": "ES2019",
"module": "CommonJS",
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
// "sourceMap": true,
"declaration": true,
// "declarationMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
}