DefinitelyTyped/types/mpv-script/tsconfig.json
David T 391f9c5052
Type definitions for mpv script enviroment (#46254)
* mpv-script

* Remove tslint rule
2020-07-23 11:29:21 -07:00

24 lines
491 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",
"mpv-script-tests.ts"
]
}