29 lines
513 B
JSON
29 lines
513 B
JSON
|
{
|
||
|
"ts-node": {
|
||
|
"compilerOptions": {
|
||
|
"module": "ESNext",
|
||
|
"types": ["node"]
|
||
|
}
|
||
|
},
|
||
|
"compilerOptions": {
|
||
|
"outDir": "./lib",
|
||
|
"incremental": true,
|
||
|
"sourceMap": true,
|
||
|
"noImplicitAny": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"module": "ES6",
|
||
|
"target": "ES6",
|
||
|
"moduleResolution": "Node",
|
||
|
"lib": [
|
||
|
"ESNext",
|
||
|
"DOM"
|
||
|
],
|
||
|
"jsx": "react",
|
||
|
"allowJs": true
|
||
|
}
|
||
|
}
|