- Настроен tsconfig.json со строгой проверкой типов - Добавлена документация на русском языке (tsconfig.README.md) - Automatic JSX runtime (react-jsx) - Алиасы путей для удобного импорта - Include src директории
33 lines
559 B
JSON
33 lines
559 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"noImplicitAny": true,
|
|
"module": "ESNext",
|
|
"target": "es5",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"strict": true
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
".fttemplates/**/*",
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
} |