mirror of
https://github.com/zkonduit/ezkl.git
synced 2026-01-08 22:08:07 -05:00
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"target": "es2017",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": false,
|
|
"esModuleInterop": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
// "incremental": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.cjs",
|
|
"src/**/*.mjs"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
// NEW: Options for file/directory watching
|
|
"watchOptions": {
|
|
// Use native file system events for files and directories
|
|
"watchFile": "useFsEvents",
|
|
"watchDirectory": "useFsEvents",
|
|
// Poll files for updates more frequently
|
|
// when they're updated a lot.
|
|
"fallbackPolling": "dynamicPriority",
|
|
// Don't coalesce watch notification
|
|
"synchronousWatchDirectory": true,
|
|
// Finally, two additional settings for reducing the amount of possible
|
|
// files to track work from these directories
|
|
"excludeDirectories": [
|
|
"**/node_modules",
|
|
"_build"
|
|
],
|
|
"excludeFiles": [
|
|
"build/fileWhichChangesOften.ts"
|
|
]
|
|
}
|
|
} |