source: frontend/tsconfig.json@ b8093a0

Last change on this file since b8093a0 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
Line 
1{
2 "compilerOptions": {
3 "target": "ES2017",
4 "lib": [
5 "dom",
6 "dom.iterable",
7 "esnext"
8 ],
9 "allowJs": true,
10 "skipLibCheck": true,
11 "strict": true,
12 "esModuleInterop": true,
13 "module": "esnext",
14 "moduleResolution": "bundler",
15 "resolveJsonModule": true,
16 "isolatedModules": true,
17 "jsx": "react-jsx",
18 "incremental": true,
19 "plugins": [
20 {
21 "name": "next"
22 }
23 ],
24 "paths": {
25 "@/*": [
26 "./src/*"
27 ]
28 },
29 "noEmit": true
30 },
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 ]
41}
Note: See TracBrowser for help on using the repository browser.