cursorless/tsconfig.json
Andreas Arvidsson f2466d82f9
Delimiter selector updated (#347)
* Reworked leading and trailing delimiter selectors

* Added language specific play/test files

* Exclude data folder from typescript compilation

* Change or line endings to LF

* Refactored language play files

* Mood files into new playground folder

* Added more tests

* Updated delimiter selector to remove white space
2021-12-01 16:00:25 +01:00

23 lines
616 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",
"data"
]
}