diff options
Diffstat (limited to 'frontend/tsconfig.json')
| -rw-r--r-- | frontend/tsconfig.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000..d8b9323 --- /dev/null +++ b/frontend/tsconfig.json | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | { | ||
| 2 | "compilerOptions": { | ||
| 3 | "target": "ES2017", | ||
| 4 | "lib": ["dom", "dom.iterable", "esnext"], | ||
| 5 | "allowJs": true, | ||
| 6 | "skipLibCheck": true, | ||
| 7 | "strict": true, | ||
| 8 | "noEmit": true, | ||
| 9 | "esModuleInterop": true, | ||
| 10 | "module": "esnext", | ||
| 11 | "moduleResolution": "bundler", | ||
| 12 | "resolveJsonModule": true, | ||
| 13 | "isolatedModules": true, | ||
| 14 | "jsx": "preserve", | ||
| 15 | "incremental": true, | ||
| 16 | "plugins": [ | ||
| 17 | { | ||
| 18 | "name": "next" | ||
| 19 | } | ||
| 20 | ], | ||
| 21 | "paths": { | ||
| 22 | "@/*": ["./*"] | ||
| 23 | } | ||
| 24 | }, | ||
| 25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], | ||
| 26 | "exclude": ["node_modules"] | ||
| 27 | } | ||
