zucchetti-sa5/tsconfig.json

24 lines
652 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
2022-10-28 11:41:58 +02:00
"baseUrl": "./",
"paths" : {
2022-10-28 11:41:58 +02:00
"@components": ["src/components"],
"@components/*": ["src/components/*"],
"@scss/*": ["src/scss/*"],
"@ts/*": ["src/ts/*"],
"@api": ["src/api"],
"@api/*": ["src/api/*"],
2022-10-28 11:41:58 +02:00
"@theme/*": ["themes/onepirate/*"],
}
2022-10-28 11:41:58 +02:00
},
"include": ["./src/**/*"]
}