46 lines
1001 B
JSON
Raw Normal View History

{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"noImplicitAny": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictFunctionTypes": false,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"strict": true,
"alwaysStrict": true,
"esModuleInterop": true,
"target": "ES2018",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"outDir": "types",
"skipLibCheck": true,
"stripInternal": true,
"resolveJsonModule": true,
"baseUrl": ".",
"emitDeclarationOnly": true,
"paths": {
"cborg": [
"cborg.js"
]
}
},
"include": [
"cborg.js",
"example.js",
"taglib.js",
"lib/"
],
"exclude": [
"node_modules"
],
"compileOnSave": false
}