napi-rs/tsconfig.json

35 lines
955 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"downlevelIteration": true,
"importHelpers": true,
"allowJs": true,
"module": "NodeNext",
"moduleResolution": "nodenext",
"newLine": "LF",
"noEmitHelpers": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"preserveSymlinks": true,
"target": "ES2022",
"sourceMap": true,
"esModuleInterop": true,
"stripInternal": true,
"resolveJsonModule": true,
"importsNotUsedAsValues": "remove",
"outDir": "scripts",
"lib": ["ES2022"]
},
"include": [],
"references": [
{ "path": "./examples/napi-compat-mode/tsconfig.json" },
{ "path": "./examples/napi/tsconfig.json" },
{ "path": "./cli/tsconfig.json" }
],
"exclude": ["node_modules", "bench", "cli/scripts", "scripts", "target"]
}