j2s/tsconfig.json

34 lines
936 B
JSON
Raw Normal View History

2023-08-05 15:37:18 +00:00
{
"files": [
"lib/lib.d.ts",
"lib/modules.ts",
"lib/utils.ts",
"lib/values/object.ts",
"lib/values/symbol.ts",
"lib/values/function.ts",
"lib/values/errors.ts",
"lib/values/string.ts",
"lib/values/number.ts",
"lib/values/boolean.ts",
"lib/values/array.ts",
"lib/promise.ts",
"lib/map.ts",
"lib/set.ts",
"lib/regex.ts",
"lib/core.ts"
],
2023-08-05 15:37:18 +00:00
"compilerOptions": {
"outFile": "bin/me/topchetoeu/jscript/js/core.js",
// "declarationDir": "",
// "declarationDir": "bin/me/topchetoeu/jscript/dts",
2023-08-05 15:37:18 +00:00
"target": "ES5",
"lib": [],
"module": "None",
2023-08-05 15:37:18 +00:00
"stripInternal": true,
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
}
}