docs/tsconfig.json
Jonas List 96037b5625
Added KeyboardShortcut component for consistent key display (#190)
* Updated user manual and themes marketplace documentation

* Added KeyboardShortcut component for consistent key display

* Removed unnecessary state for isMac
2025-05-21 10:31:19 -06:00

48 lines
No EOL
853 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"@/.source": [
"./.source/index.ts"
],
"@/*": [
"./src/*"
],
"@components/*": [
"./components/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}