seedling/source/common/.tsconfig.json
Roman Jaroš 1a17cb4f5d
Some checks failed
forgejo/Procyon/seedling/pipeline/head There was a failure building this commit
Replace UI module with Next.js
2023-12-28 21:58:08 +00:00

25 lines
No EOL
462 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true,
"outDir": "build",
"module": "esnext",
"target": "es6",
"lib": [
"es6",
"dom"
]
},
"exclude": [
"./node_modules",
"./src/**/__tests__/*.tsx"
]
}