Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1{
2 "compilerOptions": {
3 "jsx": "react-jsx",
4 "target": "ESNext",
5 "types": ["vite/client", "vite-plugin-svgr/client"],
6 "module": "esnext",
7 "strict": true,
8 "esModuleInterop": true,
9 "skipLibCheck": true,
10 "forceConsistentCasingInFileNames": true,
11 "lib": [
12 "dom",
13 "dom.iterable",
14 "esnext"
15 ],
16 "allowJs": true,
17 "allowSyntheticDefaultImports": true,
18 "noFallthroughCasesInSwitch": true,
19 "moduleResolution": "node",
20 "resolveJsonModule": true,
21 "isolatedModules": true,
22 "noEmit": true,
23 "downlevelIteration": true,
24 "paths": {
25 "@/*": [
26 "./src/*"
27 ]
28 }
29 },
30 "include": [
31 "src"
32 ]
33}