Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for vetur specific ts/jsconfig
This commit adds support for a vetur specific tsconfig/jsconfig. To improve performance on vetur on vue files, the number of files being processed needs to be minimized. For instance, test.ts files and mocks can be excluded when editing vue files since these files should never be accessed by production code. To use this feature, just place an overriden config files at the same place as the original config file. The file should have the suffix vetur, i.e. vetur-tsconfig.json. By using the extends parameter, the original config file can be included to avoid duplicate configuration: { "extends": "./tsconfig", "exclude": [ "**/*.test.ts", "**/__mocks__/*" ] }
- Loading branch information