seedling/source/ui/.tsconfig.json
Roman Jaroš 616205fe73
All checks were successful
forgejo/Procyon/seedling/pipeline/pr-master This commit looks good
forgejo/Procyon/seedling/pipeline/head This commit looks good
Replace UI module with Next.js
2023-12-29 15:09:30 +00:00

34 lines
No EOL
564 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"types": [
"node",
"jest"
],
"strict": false,
"noEmit": true,
"plugins": [
{
"name": "next"
}
],
"lib": [
"dom",
"dom.iterable",
"esnext"
]
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"./src/**/__tests__/*.tsx"
]
}