27 lines
445 B
JSON
27 lines
445 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"lib": [
|
|
"es6",
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"jsx": "react"
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"*node_modules*",
|
|
"./modules/**/node_modules",
|
|
"./**/__tests__/*.tsx"
|
|
]
|
|
}
|