mirror of
https://github.com/zhigang1992/notion-api-worker.git
synced 2026-01-12 17:32:42 +08:00
21 lines
483 B
JSON
21 lines
483 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"lib": ["esnext", "DOM", "DOM.Iterable", "WebWorker"],
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"preserveConstEnums": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"./src/*.ts",
|
|
"./src/**/*.ts",
|
|
"./node_modules/@cloudflare/workers-types/index.d.ts"
|
|
],
|
|
"exclude": ["node_modules/", "dist/"]
|
|
}
|