napi-rs/cli/tsconfig.json
2023-06-17 17:03:57 +08:00

20 lines
427 B
JSON

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