pow_sha256-polyfill/tsconfig.json
2021-12-08 14:32:27 +05:30

37 lines
700 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "es2020",
"lib": ["es2015", "dom"],
"module": "commonjs",
"allowJs": false,
"sourceMap": true,
"declaration": true,
"outDir": "./dist/",
"rootDir": "./src/",
"removeComments": true,
"moduleResolution": "node",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"node_modules",
"static",
"docs",
"jest.config.ts",
"**/*.test.ts",
"tmp",
"dist",
"**/*setupTests"
],
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "docs"
}
}