33 lines
684 B
JSON
33 lines
684 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noImplicitAny": true,
|
||
|
"target": "es2015",
|
||
|
"module": "es2015",
|
||
|
"strict": true,
|
||
|
"jsx": "react",
|
||
|
"allowJs": true,
|
||
|
"noEmit": true,
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@common/*": ["src/common/*"],
|
||
|
"@cpts/*": ["src/components/*"],
|
||
|
"@interface": ["src/interface"]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules/*",
|
||
|
"dist/*",
|
||
|
"examples/*"
|
||
|
]
|
||
|
}
|