mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
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>
14 lines
321 B
JSON
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,
|
|
}
|
|
}
|