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