25 lines
628 B
JSON
25 lines
628 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2022",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"types": ["vite/client", "vike-react", "user-agent-data-types"],
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "react",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@syntax/*": ["./components/syntax/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist", "data/snippets"]
|
|
}
|