type-gene
Version:
Typescript Type Generator
22 lines (21 loc) • 578 B
JSON
{
"compilerOptions": {
"allowJs": true,
"target": "ES6",
"outDir": "../dist",
"module": "commonjs",
"moduleResolution": "Node",
"lib": ["ES2015", "DOM", "DOM.Iterable"],
//"typeRoots": ["../node_modules/@types", "../type"],
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true
},
"include": ["../**/*"],
"exclude": ["node_modules", "dist", "../type/*"]
}