mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 05:43:08 +00:00
20 lines
513 B
JSON
20 lines
513 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2020", "DOM"],
|
|
"typeRoots": ["./node_modules/@types", "./types"]
|
|
},
|
|
"include": ["src/server.ts", "types/**/*.d.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|