mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
* Add types for service worker navigation preload TypeScript 4.4 removed types for navigation preload. This makes sense because it's currently only supported by Chromium based browsers. It seems to make sense to add those types to DefinitelyTyped until more browser engines support it. * Add mprobst as owner for dom-navigation-preload
25 lines
522 B
JSON
25 lines
522 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"dom-navigation-preload-tests.ts"
|
|
]
|
|
}
|