Files
DefinitelyTyped/types/es-to-primitive/tsconfig.json
439a7d5bc1 feat: Add es‑to‑primitive (#38947)
* 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
2019-10-17 14:30:30 -07:00

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"
]
}