zucchetti-sa5/tsconfig.json

20 lines
490 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
"baseUrl": "./src",
"paths" : {
"@components": ["components"],
"@components/*": ["components/*"],
"@scss/*": ["scss/*"],
"@ts/*": ["ts/*"],
}
}
}