source: tsconfig.json@ 8496f3c

Last change on this file since 8496f3c was 50f2fb4, checked in by Stefan-Saveski <stefansaveski19@…>, 8 months ago

Added dual language feature.

  • 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.