2023-01-06 15:54:31 -08:00
|
|
|
{
|
|
|
|
|
"include": ["src"],
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"target": "ES2020",
|
2023-01-18 14:50:51 -08:00
|
|
|
"lib": ["ES2022"],
|
2023-01-06 15:54:31 -08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"moduleResolution": "node"
|
|
|
|
|
},
|
|
|
|
|
"watchOptions": {
|
|
|
|
|
"watchFile": "useFsEvents",
|
|
|
|
|
"watchDirectory": "useFsEvents",
|
|
|
|
|
"synchronousWatchDirectory": true,
|
|
|
|
|
"excludeDirectories": ["**/node_modules", "dist"]
|
|
|
|
|
}
|
|
|
|
|
}
|