DefinitelyTyped/types/ref-napi/tsconfig.json

23 lines
460 B
JSON
Raw Permalink Normal View History

2018-08-16 05:58:44 +00:00
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
2020-02-27 19:16:20 +00:00
"strictNullChecks": true,
2018-08-16 05:58:44 +00:00
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts"
]
2020-02-27 19:16:20 +00:00
}