RevelaOS/tsconfig.json
2023-10-22 23:24:57 +02:00

22 lines
No EOL
528 B
JSON

{
"include": ["src/**/*"],
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "ES2022",
"target": "ESNext",
"jsx": "react",
"jsxFactory": "h",
"allowJs": true,
"moduleResolution": "bundler",
"esModuleInterop": true,
"declaration": true,
"emitDeclarationOnly": true,
"allowImportingTsExtensions": true,
"strictNullChecks": true,
"skipLibCheck": true,
"isolatedModules": true,
"types": ["vite/client", "node"]
}
}