feature/tauri-js-rs
json 42 lines 753 Bytes
Raw
1 {
2 "compilerOptions": {
3 "target": "es5",
4 "lib": [
5 "dom",
6 "dom.iterable",
7 "esnext"
8 ],
9 "allowJs": true,
10 "skipLibCheck": true,
11 "strict": true,
12 "forceConsistentCasingInFileNames": true,
13 "esModuleInterop": true,
14 "module": "esnext",
15 "moduleResolution": "node",
16 "resolveJsonModule": true,
17 "isolatedModules": true,
18 "jsx": "preserve",
19 "incremental": true,
20 "baseUrl": ".",
21 "paths": {
22 "@/app/*": [
23 "./app/*",
24 "./dist/tauri-on-bazel/app/*"
25 ]
26 },
27 "plugins": [
28 {
29 "name": "next"
30 }
31 ]
32 },
33 "include": [
34 "**/*.ts",
35 "**/*.tsx",
36 ".next/types/**/*.ts",
37 "next-env.d.ts"
38 ],
39 "exclude": [
40 "node_modules"
41 ]
42 }