-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
22 lines (22 loc) · 1.05 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "es6", // Specify ECMAScript target version
"module": "commonjs", // Set module code generation to CommonJS
"lib": ["es6", "dom"], // Specify a list of library files to be included in the compilation
"declaration": true, // Generates corresponding '.d.ts' file for TypeScript typings
"outDir": "./lib", // Redirect output structure to the directory
"rootDir": "./src", // 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 // Disallow inconsistently-cased references to the same file
},
"include": [
"src/generated-client/**/*" // Include all files in the src directory
],
"exclude": [
"src/generate-client.ts", // Exclude a single file
"node_modules", // Exclude the node_modules directory
"**/*.test.ts" // Exclude test files
]
}