-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
27 lines (27 loc) · 1010 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"compilerOptions": {
"target": "ES2022", // Specify ECMAScript target version
"outDir": "./dist", // Redirect output structure to the directory
"rootDir": "./src", // Specify the root directory of input files
"strict": false, // Enable all strict type-checking options
"sourceMap": false,
"module": "ES2022",
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"skipLibCheck": false, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file
"moduleResolution": "Node",
"jsx": "react",
"declaration": true,
"declarationDir": "./types",
"allowJs": true,
"checkJs": true
},
"include": [
"src/**/*.ts", // Include all TypeScript files in src (including your entry point)
"src/**/*.tsx"
],
"exclude": [
"node_modules", // Exclude the node_modules directory
"**/*.test.ts" // Exclude test files
]
}