forked from AMI3GOLtd/react-native-honeywell-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
15 lines (15 loc) · 808 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"compilerOptions": {
"module": "commonjs", // Use CommonJS module syntax for Node.js
"target": "es2015", // Compile to ES2015 syntax
"declaration": true, // Generate declaration files (.d.ts)
"outDir": "./dist", // Output directory for compiled files
"rootDir": "./src", // Specify the root directory of input files
"strict": true, // Enable strict type checking
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"skipLibCheck": true, // Skip type checking of declaration files to avoid conflicts
"forceConsistentCasingInFileNames": true // Enforce consistent file name casing
},
"include": ["src/**/*"], // Include all TypeScript files in the src directory
"exclude": ["node_modules"] // Exclude node_modules directory
}