mirror of
https://github.com/sechan100/daily-routine-2.git
synced 2026-07-22 12:00:31 +00:00
33 lines
786 B
JSON
33 lines
786 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "",
|
|
"jsx": "react-jsx",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
],
|
|
"paths" : {
|
|
"@app/*": ["src/app/*"],
|
|
"@pages/*": ["src/pages/*"],
|
|
"@widgets/*": ["src/widgets/*"],
|
|
"@features/*": ["src/features/*"],
|
|
"@entities/*": ["src/entities/*"],
|
|
"@shared/*": ["src/shared/*"],
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "src/index.d.ts"],
|
|
}
|