mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
* feat: Add `es‑to‑primitive` * chore(es‑to‑primitive): Fix `tsconfig.json` * fix(es‑to‑primitive): Add missing primitive types * fix(es‑to‑primitive): Use `unknown` in TypeScript ≥ 3.1 Co-Authored-By: Jordan Harband <ljharb@gmail.com> * chore(es‑to‑primitive): Copy `tslint.json` to sub‑directories * refactor(es‑to‑primitive): Apply Prettier formatting to `package.json` * chore(es‑to‑primitive): Trigger build
23 lines
407 B
JSON
23 lines
407 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["es5"],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": ["../"],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"es5.d.ts",
|
|
"es6.d.ts",
|
|
"es2015.d.ts",
|
|
"index.d.ts",
|
|
"es-to-primitive-tests.ts"
|
|
]
|
|
}
|