cursorless/tsconfig.json
Pokey Rule 1633ac1132
Snippet wrap (#296)
* Initial working version

* Almost done

* Change languageId

* Remove accidental file

* Attempt at complex version

* Initial version using integer placeholders

* Working using names

* Fix tests

* Fix tests

* Fix schema

* Fixes

* Fix python tests

* Cleanup yaml formatting

* Support snippet overrides

* Fix inference

* Cleanup

* CI fix

* Cleanup

* Remove yarn-error.log

* Update schema docs

* More dock

* Support user snippets dir

* use json schema ref

* Fix schema

* Wrap with snippet cleanup

* Cleanup

* More cleanup

* Change `/` to `.` for placeholder indication

* Reformat

* Fix comment

* Fix tests

* Add basic docs

* Change snippet format

* Fixes

* Add description field
2021-10-25 13:15:07 +01:00

22 lines
600 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es2020"
],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",
"src/vendor",
".vscode-test"
]
}