mirror of
https://github.com/remnawave/backend.git
synced 2026-07-03 06:31:54 +00:00
18 lines
483 B
JSON
18 lines
483 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./build/backend",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"skipLibCheck": true,
|
|
"noEmit": false,
|
|
"lib": ["es2020"],
|
|
"declaration": true,
|
|
"declarationMap": true
|
|
},
|
|
"exclude": ["scripts/**/*", "tests/**/*", "**/*.spec.ts", "**/*.test.ts"]
|
|
}
|