pow_sha256-polyfill/tsconfig.json

38 lines
700 B
JSON
Raw Normal View History

2021-06-27 21:31:09 +05:30
{
"compilerOptions": {
"incremental": true,
2021-12-07 15:35:10 +05:30
"target": "es2020",
2021-12-08 14:28:38 +05:30
"lib": ["es2015", "dom"],
"module": "commonjs",
2021-06-27 21:31:09 +05:30
"allowJs": false,
"sourceMap": true,
2021-12-08 14:28:38 +05:30
"declaration": true,
"outDir": "./dist/",
2021-06-27 21:31:09 +05:30
"rootDir": "./src/",
"removeComments": true,
"moduleResolution": "node",
2021-12-08 14:28:38 +05:30
"strict": true,
2021-06-27 21:31:09 +05:30
"noImplicitAny": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"node_modules",
"static",
"docs",
"jest.config.ts",
"**/*.test.ts",
"tmp",
2021-12-08 14:28:38 +05:30
"dist",
2021-06-27 21:31:09 +05:30
"**/*setupTests"
],
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "docs"
}
}