DefinitelyTyped/types/rascal/tsconfig.json
ethan 9c4dde3661
add type definition for rascal (#43133)
* add type definition for rascal

* add reference node

* Increase TypeScript version to match amqplib

Co-authored-by: ethan <meshethan@gmail.com>
2020-03-18 09:29:12 -07:00

24 lines
487 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"rascal-tests.ts"
]
}