napi-rs/cli/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

21 lines
462 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"strict": true,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"rootDir": "./src",
"baseUrl": ".",
"outDir": "dist",
"allowJs": false
},
"include": ["./src"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}