mirror of
https://github.com/seerr-team/seerr.git
synced 2026-04-17 22:07:59 -04:00
35 lines
874 B
JSON
35 lines
874 B
JSON
{
|
|
"eslint.enable": true,
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"sqltools.connections": [
|
|
{
|
|
"previewLimit": 50,
|
|
"driver": "SQLite",
|
|
"name": "Local SQLite",
|
|
"database": "./config/db/db.sqlite3"
|
|
}
|
|
],
|
|
"editor.formatOnSave": true,
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
"files.associations": {
|
|
"globals.css": "tailwindcss"
|
|
},
|
|
"i18n-ally.localesPaths": [
|
|
"src/i18n/locale"
|
|
],
|
|
"yaml.format.singleQuote": true,
|
|
"jestrunner.enableTestExplorer": true,
|
|
"jestrunner.defaultTestPatterns": [
|
|
"server/**/*.{test,spec}.?(c|m)[jt]s?(x)",
|
|
],
|
|
"jestrunner.nodeTestCommand": "pnpm test",
|
|
"jestrunner.changeDirectoryToWorkspaceRoot": true,
|
|
"jestrunner.projectPath": "."
|
|
}
|