diff options
| -rw-r--r-- | tsconfig.json | 37 |
1 files changed, 26 insertions, 11 deletions
diff --git a/tsconfig.json b/tsconfig.json index d8b93235..86e44b7e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,27 +1,42 @@ { "compilerOptions": { "target": "ES2017", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, - "strict": true, + "strict": false, "noEmit": true, - "esModuleInterop": true, + "incremental": true, "module": "esnext", - "moduleResolution": "bundler", + "esModuleInterop": true, + "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", - "incremental": true, + "baseUrl": ".", + "paths": { + "@/*": [ + "./*" + ] + }, "plugins": [ { "name": "next" } ], - "paths": { - "@/*": ["./*"] - } + "strictNullChecks": true }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] -} + "include": [ + "next-env.d.ts", + ".next/types/**/*.ts", + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules" + ], +}
\ No newline at end of file |
