19 lines
384 B
JSON
19 lines
384 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Basic Options */
|
|
"target": "es5",
|
|
"lib": ["es2015", "dom"],
|
|
// "module": "commonjs",
|
|
"sourceMap": true,
|
|
"outDir": "js",
|
|
// "outFile": "output.js",
|
|
// "watch": true,
|
|
|
|
/* Strict Type-Checking Options */
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
|
|
/* Additional Checks */
|
|
"noUnusedLocals": true
|
|
}
|
|
}
|