mirror of
https://github.com/logos-co/assembly.git
synced 2026-08-31 05:01:09 +00:00
17 lines
365 B
JSON
17 lines
365 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["esnext"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|