1
0
Files
jecnarozvrh/tsconfig.json
jzitnik-dev ae17dc241a
All checks were successful
Remote Deploy / deploy (push) Successful in 14s
refactor: Rewrite to typescript
2026-02-11 08:20:56 +01:00

21 lines
368 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": "./"
},
"include": [
"./**/*.ts"
],
"exclude": [
"node_modules",
"web"
]
}