DefinitelyTyped/types/next/tsconfig.json

40 lines
917 B
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",
"amp.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-app-tests.tsx",
"test/next-error-tests.tsx",
"test/next-document-tests.tsx",
"test/next-component-tests.tsx"
]
}