Merge commit '6e92d2345e8231a44556ce7d416451f5f3e6c398' as 'engine262'

This commit is contained in:
2026-03-27 10:07:29 +05:30
433 changed files with 90478 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
{
"references": [{ "path": "./lib-src/node" }, { "path": "./lib-src/inspector" }, { "path": "./src" }],
"compilerOptions": {
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useUnknownInCatchVariables": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"declaration": true,
// to make declaration map useful, we need to publish src
// but it might help when debugging
"declarationMap": true,
"stripInternal": true,
"sourceMap": true,
"allowJs": true,
// "checkJs": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2024"],
"incremental": true,
"skipLibCheck": true,
"paths": {
"#self": ["./src/index.mts"]
}
},
"files": []
}