| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "typescript.tsdk": "node_modules/typescript/lib",
- "typescript.preferences.includePackageJsonAutoImports": "on",
- "typescript.updateImportsOnFileMove.enabled": "always",
- "typescript.tsserver.watchOptions": {
- "watchFile": "useFsEvents",
- "watchDirectory": "useFsEvents",
- "fallbackPolling": "dynamicPriority",
- "synchronousWatchDirectory": true,
- "excludeDirectories": [
- "**/node_modules",
- "**/dist",
- "**/.git"
- ]
- },
- "typescript.tsserver.experimental.enableProjectDiagnostics": true,
- "i18n-ally.localesPaths": [
- "src/locales"
- ],
- "i18n-ally.keystyle": "nested",
- "i18n-ally.sourceLanguage": "zh-CN",
- "i18n-ally.displayLanguage": "zh-CN",
- "i18n-ally.sortKeys": true,
- "i18n-ally.pathMatcher": "{locale}/{namespace}.ts",
- "i18n-ally.namespace": true,
- "i18n-ally.enabledFrameworks": [
- "react"
- ],
- "i18n-ally.enabledParsers": [
- "json",
- "yaml",
- "ts"
- ],
- "i18n-ally.parsers.typescript.compilerOptions": {
- "module": "commonjs",
- "moduleResolution": "node",
- "target": "es2015",
- "allowJs": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true
- },
- "editor.codeActionsOnSave": {
- "source.fixAll.stylelint": "explicit",
- "source.fixAll.eslint": "explicit"
- },
- "stylelint.validate": [
- "css",
- "less",
- "scss",
- "sass"
- ],
- "stylelint.configFile": ".stylelintrc.mjs",
- "stylelint.config": null,
- "stylelint.ignoreDisables": false,
- "stylelint.enable": true,
- "css.validate": false,
- "less.validate": false,
- "scss.validate": false,
- "eslint.validate": [
- "javascript",
- "javascriptreact",
- "typescript",
- "typescriptreact"
- ],
- "eslint.format.enable": true,
- "eslint.run": "onSave"
- }
|