DefinitelyTyped/types/next/tsconfig.json
Resi Respati dab682e6f8 [next] Add support for next/constants (#29633)
* [next] Add support for `next/constants`

* minor whitespace fix
2018-10-11 10:47:24 -07:00

44 lines
1.1 KiB
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"target": "es6",
"jsx": "react",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"constants.d.ts",
"app.d.ts",
"document.d.ts",
"dynamic.d.ts",
"error.d.ts",
"head.d.ts",
"link.d.ts",
"router.d.ts",
"config.d.ts",
"test/next-tests.ts",
"test/next-constants-tests.ts",
"test/next-app-tests.tsx",
"test/next-error-tests.tsx",
"test/next-head-tests.tsx",
"test/next-document-tests.tsx",
"test/next-link-tests.tsx",
"test/next-dynamic-tests.tsx",
"test/next-router-tests.tsx",
"test/next-component-tests.tsx"
]
}