forked from AppsFlyerSDK/appsflyer-react-native-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
14 lines (14 loc) · 853 Bytes
/
tsconfig.json
File metadata and controls
14 lines (14 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"compilerOptions": {
"target": "esnext", // Specifies the ECMAScript target version
"module": "commonjs", // Specifies the module code generation method
"jsx": "react-native", // Supports JSX in React Native
"strict": true, // Enables strict type-checking options
"esModuleInterop": true, // Enables compatibility between CommonJS and ES Modules
"skipLibCheck": true, // Skips type checking of declaration files
"forceConsistentCasingInFileNames": true, // Ensures consistent casing in file names
"noEmit": true // Prevents the compiler from emitting output files
},
"include": ["src/**/*", "__tests__/**/*"], // Includes application source code and tests
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"] // Excludes unnecessary files
}