16 lines
366 B
JavaScript
16 lines
366 B
JavaScript
// @ts-check
|
|
|
|
import { defineConfig } from "cspell";
|
|
|
|
export default defineConfig({
|
|
dictionaries: ["custom"],
|
|
dictionaryDefinitions: [
|
|
{
|
|
addWords: true,
|
|
name: "custom",
|
|
path: "custom-words.txt",
|
|
},
|
|
],
|
|
import: ["@isentinel/dict-roblox/cspell-ext.json", "@isentinel/dict-rbxts/cspell-ext.json"],
|
|
});
|