knightrider/tsconfig.json

19 lines
677 B
JSON
Raw Permalink Normal View History

2025-01-18 01:27:58 +00:00
{
"compilerOptions": {
2025-01-18 14:46:30 +00:00
"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
2025-01-18 01:27:58 +00:00
"strict": true,
"esModuleInterop": true,
2025-01-18 14:46:30 +00:00
"resolveJsonModule": true,
"outDir": "./dist",
"rootDir": "./src",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
2025-01-18 01:27:58 +00:00
"allowSyntheticDefaultImports": true,
2025-01-18 14:46:30 +00:00
"noImplicitAny": false,
"typeRoots": ["./node_modules/@types", "./types"]
2025-01-18 01:27:58 +00:00
},
2025-01-18 14:46:30 +00:00
"include": ["src/**/*.ts", "types/**/*.d.ts", "types/Client.d.ts"],
2025-01-18 01:27:58 +00:00
"exclude": ["node_modules"]
2025-01-18 14:46:30 +00:00
}