19 lines
No EOL
677 B
JSON
19 lines
No EOL
677 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022", // Use the latest syntax supported by Node.js 23
|
|
"module": "NodeNext", // Enables ES Modules with support for .js extensions
|
|
"moduleResolution": "NodeNext", // Required for NodeNext modules
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": false,
|
|
"typeRoots": ["./node_modules/@types", "./types"]
|
|
},
|
|
"include": ["src/**/*.ts", "types/**/*.d.ts", "types/Client.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
} |