13 lines
399 B
JSON
13 lines
399 B
JSON
{
|
|
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"typeRoots": ["./node_modules/@types", "./types/ext"],
|
|
"lib": ["esnext", "DOM"],
|
|
"noEmit": true, // Disable emitting output (use esbuild to handle this)
|
|
"skipLibCheck": true, // Skip type checking of all declaration files (*.d.ts)
|
|
"strict": false, // Disable strict type checks if needed
|
|
"moduleResolution": "node",
|
|
}
|
|
}
|