15 lines
325 B
JSON
15 lines
325 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"noEmitOnError": true,
|
|
"noUnusedLocals": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "ES5",
|
|
"outDir": "./lib",
|
|
"lib": ["ES5", "ES2015.Promise", "DOM"],
|
|
"types": []
|
|
},
|
|
"include": ["src/*"]
|
|
}
|