mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
26 lines
611 B
JSON
26 lines
611 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2022",
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"],
|
|
"@/*": ["./app/*"],
|
|
"@shared/*": ["./shared/*"]
|
|
},
|
|
"noEmit": true,
|
|
"types": ["@ronin/learn-anything"]
|
|
}
|
|
}
|