typescript-plugin-toml
TypeScript icon, indicating that this package has built-in type declarations

0.3.1 • Public • Published

typescript-plugin-toml

npm version automatic deploy MIT License

A typescript language service plugin providing support for toml files.

example

Usage

npm i -D typescript-plugin-toml # yarn add -D typescript-plugin-toml

And then add this to tsconfig.json.

{
  "compilerOptions": {
    "plugins": [{ "name": "typescript-plugin-toml" }]
  }
}

If you're using VSCode, switch to workspace version.

.const.toml

If the file name ends with .const.toml, the typings will become as if you are using as const.

For example it will be like below.

test.toml and test.const.toml

key = 'val'

index.ts

import test from './test.toml'
import testConst from './test.const.toml'

type Test = typeof test // { key: string }
type TestConst = typeof testConst // { readonly key: 'val' }

Readme

Keywords

Package Sidebar

Install

npm i typescript-plugin-toml

Weekly Downloads

200

Version

0.3.1

License

MIT

Unpacked Size

9.06 kB

Total Files

11

Last publish

Collaborators

  • sapphi-red