Lambda calculus-like library written in TypeScript.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
jlc/tsconfig.json

24 lines
508 B

{
"compilerOptions": {
"outDir": "build",
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Node",
"lib": [
"ES2022"
],
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"declaration": false,
"sourceMap": true,
},
"include": [
"src/**/*.ts",
],
}