aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-rollup/packages/tsconfig/nextjs.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-rollup/packages/tsconfig/nextjs.json')
-rw-r--r--examples/with-rollup/packages/tsconfig/nextjs.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/with-rollup/packages/tsconfig/nextjs.json b/examples/with-rollup/packages/tsconfig/nextjs.json
new file mode 100644
index 0000000..e45500d
--- /dev/null
+++ b/examples/with-rollup/packages/tsconfig/nextjs.json
@@ -0,0 +1,20 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "display": "Next.js",
+ "extends": "./base.json",
+ "compilerOptions": {
+ "allowJs": true,
+ "declaration": false,
+ "declarationMap": false,
+ "incremental": true,
+ "jsx": "preserve",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "module": "esnext",
+ "noEmit": true,
+ "resolveJsonModule": true,
+ "strict": false,
+ "target": "es5"
+ },
+ "include": ["src", "next-env.d.ts"],
+ "exclude": ["node_modules"]
+}