c0c9b7c9b4
Signed-off-by: Anton Nesterov <anton@demiurg.io>
26 lines
598 B
JSON
26 lines
598 B
JSON
{
|
|
"files": ["dal/index.ts", "dal/Binding.ts", "dal/node.napi.ts"],
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"allowJs": true,
|
|
|
|
// Bundler mode
|
|
"moduleResolution": "node",
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": false,
|
|
|
|
// Best practices
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
// Some stricter flags (disabled by default)
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"outDir": "dist"
|
|
}
|
|
}
|