Files
languageservices/actions-languageserver/tsconfig.json
T

20 lines
471 B
JSON
Raw Normal View History

2022-11-08 17:00:59 -08:00
{
"include": ["src"],
"compilerOptions": {
"module": "esnext",
"target": "ES2020",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"strict": true,
2023-01-20 17:20:21 -08:00
"moduleResolution": "node",
"lib": ["es6", "webworker"]
2022-11-08 17:00:59 -08:00
},
"watchOptions": {
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
"synchronousWatchDirectory": true,
"excludeDirectories": ["**/node_modules", "dist"],
}
}