45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitOverride": true,
|
|
"strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": false,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"noErrorTruncation": true,
|
|
"noEmitOnError": false,
|
|
"stripInternal": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"declarationMap": true,
|
|
"importHelpers": false,
|
|
"experimentalDecorators": true,
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2022",
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
|
"baseUrl": ".",
|
|
"outDir": "./dist/lib",
|
|
"rootDirs": [".", "./dist/dts/"],
|
|
"paths": {
|
|
"@bokehjs/*": [
|
|
"node_modules/@bokeh/bokehjs/build/js/lib/*"
|
|
],
|
|
"react": ["node_modules/preact/compat"],
|
|
"react-dom": ["node_modules/preact/compat"]
|
|
}
|
|
},
|
|
"include": ["./*.ts", "./models/", "./dist/dts/styles/models/"]
|
|
}
|