Files
languageservices/actions-languageserver/tsconfig.json
T
Christopher Schleiden eab53474cb Support webWorker clients
2023-01-20 17:20:21 -08:00

20 lines
471 B
JSON

{
"include": ["src"],
"compilerOptions": {
"module": "esnext",
"target": "ES2020",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "node",
"lib": ["es6", "webworker"]
},
"watchOptions": {
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
"synchronousWatchDirectory": true,
"excludeDirectories": ["**/node_modules", "dist"],
}
}