Files
DefinitelyTyped/types/jquery/tsconfig.json
Leonard Thieu 83311151c9 [jquery] Fix compatibility issue with @types/bluebird-global.
`@types/jquery` used the global Promise interface to indicate compatibility with other Promise implementations. `@types/bluebird-global` modifies the global Promise interface making it unsafe to use.

To remedy this, a private copy of the global Promise interface is introduced.
2018-06-10 12:21:09 -04:00

34 lines
870 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"jquery-tests.ts",
"test/bluebird-global-tests.ts",
"test/example-tests.ts",
"test/longdesc-tests.ts",
"test/learn-tests.ts",
"test/jquery-no-window-module-tests.ts",
"test/jquery-window-module-tests.ts",
"test/jquery-slim-no-window-module-tests.ts",
"test/jquery-slim-window-module-tests.ts"
]
}