mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-10 23:48:26 +00:00
28 lines
708 B
JSON
28 lines
708 B
JSON
{
|
|
"exclude": [],
|
|
"include": ["remix.env.d.ts", "global.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"types": ["vitest/globals"],
|
|
"lib": ["DOM", "DOM.Iterable", "DOM.AsyncIterable", "ES2020"],
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2020",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"noEmit": true,
|
|
}
|
|
}
|