28 lines
546 B
JSON
28 lines
546 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
// "emitDecoratorMetadata": true,
|
|
// "allowSyntheticDefaultImports": true,
|
|
// "resolveJsonModule": true,
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"lib": ["es5", "es6", "es7", "dom"],
|
|
"typeRoots": [
|
|
"./types",
|
|
],
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./types/**/*"
|
|
],
|
|
}
|