@nlabs/arkhamjs-example-ts-react
Version:
ArkhamJS React Typescript Example App
34 lines (33 loc) • 642 B
JSON
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"inlineSourceMap": true,
"jsx": "react-jsx",
"lib": [
"esnext",
"dom"
],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"outDir": "lib",
"pretty": true,
"skipLibCheck": true,
"target": "ES2018"
},
"include": [
"./src/**/*"
],
"exclude": [
"**/*.test.*",
"lib",
"./node_modules",
"./test"
]
}