maketypes
Version:
Make TypeScript types and proxy objects from example JSON objects. Can use proxy objects to dynamically type check JSON at runtime.
22 lines • 505 B
JSON
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"noUnusedLocals": true,
"noEmitOnError": true,
"moduleResolution": "node",
"alwaysStrict": true,
"inlineSourceMap": true,
"strictNullChecks": true,
"lib": [
"es6", "es2015.collection"
],
"declaration": true
},
"include": [
"index.ts",
"lib/**/*.ts",
"test/common/*.ts"
]
}