pwgen-for-bios/tsconfig.json

20 lines
440 B
JSON
Raw Normal View History

2016-07-18 11:35:00 -04:00
{
"compilerOptions": {
"module": "commonjs",
"lib": ["dom", "es5"],
2016-07-18 11:35:00 -04:00
"target": "es3",
"noImplicitAny": true,
2018-01-19 17:45:34 -05:00
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
2018-01-19 17:45:34 -05:00
"strict": true,
"sourceMap": true,
2018-01-19 17:45:34 -05:00
"rootDir": "src/",
"outDir": "dist/"
2016-07-18 11:35:00 -04:00
},
"exclude": [
"node_modules"
]
}