17 lines
359 B
JSON
17 lines
359 B
JSON
{
|
|
"include": ["./**/*"],
|
|
"compilerOptions": {
|
|
// Tells TypeScript to read JS files, as
|
|
// normally they are ignored as source files
|
|
"allowJs": true,
|
|
// Generate d.ts files
|
|
"declaration": true,
|
|
"emitDeclarationOnly": false,
|
|
"noEmit": true,
|
|
"lib": [ "ES2016" ],
|
|
"target": "es2016",
|
|
"moduleResolution":"Node",
|
|
"noImplicitAny": true,
|
|
}
|
|
}
|