diff options
author | Anthony Wang | 2022-01-12 14:48:34 -0600 |
---|---|---|
committer | Anthony Wang | 2022-01-12 14:48:34 -0600 |
commit | 35726b7052d3f82fe01c448ae1911b6ca09baa48 (patch) | |
tree | 1d9e7a5068e449383f5d8fc017b35ddd4fa687ab /front | |
parent | f4d4d16b87272c728a138475659d9c5f67ecd090 (diff) |
Rebuild node src
Diffstat (limited to 'front')
-rw-r--r-- | front/next-env.d.ts | 5 | ||||
-rw-r--r-- | front/tsconfig.json | 45 |
2 files changed, 32 insertions, 18 deletions
diff --git a/front/next-env.d.ts b/front/next-env.d.ts index 7b7aa2c..4f11a03 100644 --- a/front/next-env.d.ts +++ b/front/next-env.d.ts @@ -1,2 +1,5 @@ /// <reference types="next" /> -/// <reference types="next/types/global" /> +/// <reference types="next/image-types/global" /> + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/front/tsconfig.json b/front/tsconfig.json index f18c978..cdd505d 100644 --- a/front/tsconfig.json +++ b/front/tsconfig.json @@ -1,19 +1,30 @@ { - "compilerOptions": { - "target": "esnext", - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "noEmit": true, - "esModuleInterop": true, - "module": "commonjs", - "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve" - }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "compilerOptions": { + "target": "esnext", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "commonjs", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true + }, + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules" + ] } |