Files
forge/tsconfig.json
T

16 lines
393 B
JSON
Raw Normal View History

2026-08-29 11:59:28 +03:00
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": ["ES2020", "ES2021.String"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": ".",
"resolveJsonModule": true
},
"include": ["index.ts", "server/**/*.ts"],
"exclude": ["node_modules", "client", "dist", "extension", "**/*.test.ts"]
}