RevelaOS/tsconfig.json
2023-10-16 13:18:30 +01:00

18 lines
No EOL
402 B
JSON

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