mirror of
https://github.com/smartfrigde/armcord.git
synced 2026-06-23 05:25:43 +00:00
* wip: local shelter plugins * serve plugins over armcord protocol * remove useless comments * remove use strict from bundles before sending them * update lockfile * lint * check for path escape * add fix bundle script * format script * remove unused imports
16 lines
461 B
JSON
16 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"exactOptionalPropertyTypes": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"rootDir": "src",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"target": "ESNext",
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "src/shelter/**/*"]
|
|
}
|