28 lines
621 B
JSON
28 lines
621 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"lib": ["es2017", "dom"],
|
|
"target": "es2017",
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"baseUrl": "./",
|
|
"alwaysStrict": true,
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"*": ["@types/*"],
|
|
"@app/*": ["app/*"]
|
|
}
|
|
},
|
|
"include": ["app/**/*"],
|
|
"exclude": ["node_modules"],
|
|
}
|