source: tsconfig.json@ b6e1b3c

main
Last change on this file since b6e1b3c was 40ac7a9, checked in by Mihail <mihail2.naumov@…>, 7 months ago

Added frontend elements

  • Property mode set to 100644
File size: 488 bytes
Line 
1{
2 "compilerOptions": {
3 "strict": true,
4 "target": "ES2022",
5 "module": "ES2022",
6 "moduleResolution": "Bundler",
7 "lib": [
8 "DOM",
9 "DOM.Iterable",
10 "ESNext"
11 ],
12 "types": [
13 "vite/client",
14 "vike-react"
15 ],
16 "noEmit": true,
17 "skipLibCheck": true,
18 "esModuleInterop": true,
19 "jsx": "react-jsx",
20 "jsxImportSource": "react"
21 },
22 "exclude": [
23 "dist"
24 ],
25 "include": [
26 "./**/*",
27 "./emotion-server.d.ts"
28 ]
29}
Note: See TracBrowser for help on using the repository browser.