tweak-tools
Version:
Tweak your React projects until awesomeness
24 lines • 513 B
JSON
{
"compilerOptions": {
"outDir": "./dist",
"module": "commonjs",
"target": "es2017",
"jsx": "react",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"typeRoots": [
"./node_modules/@types",
"./types"
],
"lib": [
"es2017",
"dom"
]
},
"include": [
"src/**/*"
]
}