pwgen-for-bios/tsconfig.json
Slava Bacherikov d9bf30765f Add google analytics support
Add code to track performance metrics and events (password calculation).
2018-02-08 02:42:06 +02:00

19 lines
440 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["dom", "es5"],
"target": "es3",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"strict": true,
"sourceMap": true,
"rootDir": "src/",
"outDir": "dist/"
},
"exclude": [
"node_modules"
]
}