diff options
Diffstat (limited to 'docs/tsconfig.json')
| -rw-r--r-- | docs/tsconfig.json | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/docs/tsconfig.json b/docs/tsconfig.json index 3cab56b..1563f3e 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -1,3 +1,20 @@ { - "extends": "./.docs/.nuxt/tsconfig.json" + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": false, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "incremental": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve" + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "exclude": ["node_modules"] } |
