napi-rs/cli/tsconfig.json

21 lines
429 B
JSON
Raw Normal View History

{
"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"
}
}