40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["es2017", "dom"],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noImplicitThis": true,
|
|
"composite": true,
|
|
"emitDeclarationOnly": true,
|
|
"alwaysStrict": true,
|
|
"types": ["node", "mocha", "chai", "sinon"],
|
|
"esModuleInterop": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"skipLibCheck": true,
|
|
"incremental": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
}
|
|
// "include": ["packages/**/*.js", "packages-node/**/*.js"],
|
|
// "exclude": [
|
|
// "node_modules",
|
|
// "**/node_modules/*",
|
|
// "**/coverage/*",
|
|
// "**/dist/**/*",
|
|
// "packages/**/test-helpers",
|
|
// "packages/**/docs/**/*",
|
|
// "packages/singleton-manager/demo/",
|
|
// "packages/singleton-manager/test/",
|
|
// // ignore test/demos for singleton manager until overlays are typed as it's used in there
|
|
// "packages-node/**/test-helpers",
|
|
// "packages-node/**/docs/**/*",
|
|
// "packages-node/babel-plugin-extend-docs/**/*.js",
|
|
// "packages-node/providence-analytics/**/*.js",
|
|
// "packages-node/remark-extend/**/*.js"
|
|
// ]
|
|
}
|