mirror of
https://github.com/vector-im/element-web.git
synced 2026-03-02 12:01:41 +01:00
mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
13 lines
308 B
JSON
13 lines
308 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowImportingTsExtensions": true,
|
|
"jsx": "preserve",
|
|
"declaration": false,
|
|
"outDir": "./lib/module_system",
|
|
"lib": ["es2022"],
|
|
"types": ["node"]
|
|
},
|
|
"include": ["./module_system/**/*.ts"]
|
|
}
|