source: frontend/tsconfig.json

Last change on this file was b8093a0, checked in by imbrsk <boris696boris@…>, 3 days ago

Merge iknow-remaster into frontend/

Bring the Next.js frontend into this repository as a monorepo subdirectory,
preserving its full commit history via a subtree merge.

  • Property mode set to 100644
File size: 702 bytes
RevLine 
[65f7b64]1{
2 "compilerOptions": {
3 "target": "ES2017",
[50f2fb4]4 "lib": [
5 "dom",
6 "dom.iterable",
7 "esnext"
8 ],
[65f7b64]9 "allowJs": true,
10 "skipLibCheck": true,
11 "strict": true,
12 "esModuleInterop": true,
13 "module": "esnext",
14 "moduleResolution": "bundler",
15 "resolveJsonModule": true,
16 "isolatedModules": true,
[50f2fb4]17 "jsx": "react-jsx",
[65f7b64]18 "incremental": true,
19 "plugins": [
20 {
21 "name": "next"
22 }
23 ],
24 "paths": {
[50f2fb4]25 "@/*": [
26 "./src/*"
27 ]
28 },
29 "noEmit": true
[65f7b64]30 },
[50f2fb4]31 "include": [
32 "next-env.d.ts",
33 "**/*.ts",
34 "**/*.tsx",
35 ".next/types/**/*.ts",
36 ".next/dev/types/**/*.ts"
37 ],
38 "exclude": [
39 "node_modules"
40 ]
[65f7b64]41}
Note: See TracBrowser for help on using the repository browser.