Madeorsk
1c3c87a4a6
+ Add a property definition class. + Add some definition functions on models, which have to be redefined when implementing a new model. - Remove decorators.
25 lines
430 B
JSON
25 lines
430 B
JSON
{
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
|
|
"files": ["src/index.ts"],
|
|
"compilerOptions": {
|
|
"outDir": "./lib/",
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"module": "ES6",
|
|
"moduleResolution": "Node",
|
|
"target": "ES6",
|
|
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
]
|
|
}
|
|
}
|