DefinitelyTyped/types/urijs/tsconfig.json
Marcell Toth 270c15f15c
urijs: Correct UMD typings, remove implicit global declaration (#42543)
* urijs: Correct UMD typings, remove implicit global.

* urijs: add case for testing implicit global var in a script

* urijs: Add test to test UMD global in an ES module

* urijs: Undo unnecessary reformatting
2020-03-02 10:48:50 -08:00

26 lines
618 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/urijs-dom.test.ts",
"test/urijs-nodejs.test.ts",
"test/urijs-global-module.test.ts",
"test/urijs-global-script.test.ts"
]
}