mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
* Chore: moves setup checklist to RSC * fix other merge conflictsg * made code refactors * added TAction as return type for getActions * fixed build issues * fix environmentNotice component * refactor EnvironmentNotice component * fix js tests --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
22 lines
530 B
JSON
22 lines
530 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Next.js",
|
|
"extends": "./base.json",
|
|
"compilerOptions": {
|
|
"plugins": [{ "name": "next" }],
|
|
"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"]
|
|
}
|