25 lines
652 B
JSON
25 lines
652 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"declarationDir": "./types",
|
|
"esModuleInterop": false,
|
|
"lib": ["es2017"],
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "./src",
|
|
"rootDir": "./ts-src",
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "es2017",
|
|
"types": ["@types/mocha", "node"]
|
|
},
|
|
"include": ["ts-src/*.ts", "types/tiny-secp256k1.d.ts"],
|
|
"exclude": ["**/*.spec.ts", "node_modules/**/*"]
|
|
}
|