mirror of
https://github.com/netbirdio/docs.git
synced 2026-04-16 07:26:35 +00:00
17 lines
448 B
JSON
17 lines
448 B
JSON
// generator files need their own tsconfig.json because they don't like "module": "esnext" setting that nextjs requires in the main tsconfig
|
|
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"noImplicitAny": false,
|
|
"strict": false,
|
|
"strictNullChecks": false,
|
|
"types": ["node"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|