20 lines
468 B
JSON
20 lines
468 B
JSON
|
|
{
|
||
|
|
"include": ["src"],
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "esnext",
|
||
|
|
"target": "ES2020",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"strict": true,
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"resolveJsonModule": true
|
||
|
|
},
|
||
|
|
"watchOptions": {
|
||
|
|
"watchFile": "useFsEvents",
|
||
|
|
"watchDirectory": "useFsEvents",
|
||
|
|
"synchronousWatchDirectory": true,
|
||
|
|
"excludeDirectories": ["**/node_modules", "dist"]
|
||
|
|
}
|
||
|
|
}
|