napi-rs/examples/napi/tsconfig.json
LongYinan 13d0ce075e
feat: integrate with emnapi (#1669)
* Integrate with emnapi

* resolve conflict

* ignore wasm

* generate wasi file

* Add wasi test to workflow

* Fix wasi template

* emnapi new initialize api

* Finish test

* Purne tsconfig

* Generate wasi worker

* Fix electron test

* Finalize check

* Noop adjust_external_memory

* Apply cr suggestions
2023-11-02 12:57:11 +08:00

22 lines
423 B
JSON

{
"extends": "../tsconfig.json",
"include": ["."],
"compilerOptions": {
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": ".",
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": false,
"noEmit": true,
"types": ["bun-types"],
"importHelpers": false
},
"exclude": [
"dist",
"electron.js",
"electron-renderer",
"index.js",
"index.wasi.mjs"
]
}