-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (23 loc) · 826 Bytes
/
tsconfig.json
File metadata and controls
24 lines (23 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"jsx": "react",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"*": ["node_modules/*", "types/*"]
},
"outDir": "lib", // Specify the output directory for compiled files
"declaration": true, // Ensure declaration files (.d.ts) are generated
"declarationDir": "lib" // Specify the output directory for declaration files
},
"include": ["src/index.tsx"], // Adjusted path to src folder
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"]
}