docusaurus/packages/create-docusaurus/tsconfig.json
Joshua Chen 44d73f7230
refactor: make JS executables included in the tsconfig for editor hints (#6861)
* refactor: make JS executables included in the tsconfig for editor hints

* oops
2022-03-06 23:07:23 +08:00

10 lines
199 B
JSON

// For editor typechecking; includes bin
{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"rootDir": "."
},
"include": ["src", "bin"]
}