mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-10 07:28:01 -05:00
32 lines
766 B
JSON
32 lines
766 B
JSON
{
|
|
"declaration": true,
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"module": "ES2020",
|
|
"target": "ES2021",
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"declarationDir": "./srcts/types",
|
|
"emitDeclarationOnly": true,
|
|
"moduleResolution": "bundler",
|
|
// Can not use `types: []` to disable injecting NodeJS types. More types are
|
|
// needed than just the DOM's `window.setTimeout`
|
|
// "types": [],
|
|
"strict": true,
|
|
},
|
|
"include": [
|
|
"srcts/src/index.ts",
|
|
"srcts/src/**/*.ts",
|
|
"srcts/build/*.ts",
|
|
"srcts/extras/*.ts",
|
|
"srcts/build/extras.ts",
|
|
"srcts/src/components/errorConsole.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"srcts/types/",
|
|
"**/__tests__",
|
|
]
|
|
}
|