spreed/tsconfig.json
Grigorii K. Shartsev 13879e560b build: add tsconfig.json for ESBuild
Without local tsconfig.json esbuild-loader is searchting for the config in any parent directory.
Then server's root tsconfig is used. It is not related to Talk and requires server's node_modules to be
installed.

Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
2023-08-18 15:16:28 +02:00

14 lines
321 B
JSON

{
"include": ["./src/**/*.ts"],
"exclude": ["node_modules", "vendor"],
"compilerOptions": {
"outDir": "./js",
"allowJs": true,
"module": "CommonJS",
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"target": "ES2020",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
}
}