-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
21 lines (20 loc) · 1011 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"target": "ES6", // Specify ECMAScript target version
"module": "commonjs", // Specify module code generation
"rootDir": "./src", // Specify the root directory of input files
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file
"outDir": "./dist",
"useUnknownInCatchVariables": false
},
"include": [
"./src/**/*", // Include all TypeScript files in src (including .ts, .tsx, and .d.ts files)
],
"exclude": [
"node_modules", // Exclude the node_modules directory
"**/*.test.ts" , // Exclude test files
"dist/**/*" // Exclude build files
]
}