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",
|
2023-01-30 17:05:32 -08:00
|
|
|
"lib": ["es6", "webworker"],
|
|
|
|
|
"resolveJsonModule": true
|
2022-11-08 17:00:59 -08:00
|
|
|
},
|
|
|
|
|
"watchOptions": {
|
|
|
|
|
"watchFile": "useFsEvents",
|
|
|
|
|
"watchDirectory": "useFsEvents",
|
|
|
|
|
"synchronousWatchDirectory": true,
|
|
|
|
|
"excludeDirectories": ["**/node_modules", "dist"],
|
|
|
|
|
}
|
|
|
|
|
}
|