25 lines
408 B
JSON
25 lines
408 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"module": "commonjs",
|
|
"jsx": "react-jsx",
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src",
|
|
"./types",
|
|
"./config"
|
|
]
|
|
}
|