35 lines
610 B
JSON
35 lines
610 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"declaration": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"es",
|
|
"dist",
|
|
"docs-dist",
|
|
"typings",
|
|
"**/__test__",
|
|
"test",
|
|
"fixtures"
|
|
]
|
|
}
|