]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blob - libs/base-x/tsconfig.json
Add base-x to libs directory
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / libs / base-x / tsconfig.json
1 {
2 "compilerOptions": {
3 "target": "ES5",
4 "module": "commonjs",
5 "outDir": "./src",
6 "declaration": true,
7 "rootDir": "./ts_src",
8 "types": [
9 "node"
10 ],
11 "allowJs": false,
12 "strict": true,
13 "noImplicitAny": true,
14 "strictNullChecks": true,
15 "strictFunctionTypes": true,
16 "strictBindCallApply": true,
17 "strictPropertyInitialization": true,
18 "noImplicitThis": true,
19 "alwaysStrict": true,
20 "esModuleInterop": false,
21 "noUnusedLocals": true,
22 "noUnusedParameters": true
23 },
24 "include": [
25 "ts_src/**/*.ts"
26 ],
27 "exclude": [
28 "**/*.spec.ts",
29 "node_modules/**/*"
30 ]
31 }