-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
18 lines (18 loc) · 1.35 KB
/
tsconfig.json
File metadata and controls
18 lines (18 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"compilerOptions": {
"target": "ES2018", // Specify ECMAScript target version
"module": "commonjs", // Specify module code generation
"outDir": "./dist", // Redirect output structure to the directory
"rootDir": "./", // Specify the root directory of input files
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true, // Ensure consistent casing in file names
"resolveJsonModule": true, // Include modules imported with .json extension
"types": ["node", "jest"], // Specify types for type checking
"lib": ["es2018", "dom"], // Specify library files to be included in the compilation
"allowSyntheticDefaultImports": true // Allow default imports from modules with no default export
},
"include": ["src/**/*.ts", "Utils", "src/pageObject/LoginPage"], // Specify which directories to include in the compilation
"exclude": ["node_modules"] // Specify which directories to exclude from the compilation
}