19 lines
561 B
JSON
19 lines
561 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020", // More modern target
|
|
"module": "commonjs",
|
|
"strict": true, // Enable all strict type-checking options
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true, // Skip type checking of declaration files
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts", // Include all .ts files in the src directory
|
|
"src/types/**/*.d.ts" // Include our custom type definitions
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|