33 lines
735 B
JSON
33 lines
735 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6", "dom"
|
|
],
|
|
"types": [
|
|
"node", "reflect-metadata",
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types", "typings"
|
|
],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"outDir": "lib",
|
|
"jsx": "react"
|
|
},
|
|
"include": [
|
|
"src", "typings"
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts", "**/*.spec.tsx"
|
|
]
|
|
} |