2022-10-13 09:50:30 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"module": "es6",
|
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
2022-10-13 17:06:43 +02:00
|
|
|
"moduleResolution": "node",
|
2022-10-28 11:41:58 +02:00
|
|
|
"baseUrl": "./",
|
2022-10-13 17:06:43 +02:00
|
|
|
"paths" : {
|
2022-10-28 11:41:58 +02:00
|
|
|
"@components": ["src/components"],
|
|
|
|
"@components/*": ["src/components/*"],
|
|
|
|
"@scss/*": ["src/scss/*"],
|
|
|
|
"@ts/*": ["src/ts/*"],
|
2022-11-03 22:33:46 +01:00
|
|
|
"@api": ["src/api"],
|
2022-11-03 13:24:52 +01:00
|
|
|
"@api/*": ["src/api/*"],
|
2022-10-28 11:41:58 +02:00
|
|
|
"@theme/*": ["themes/onepirate/*"],
|
2022-10-13 17:06:43 +02:00
|
|
|
}
|
2022-10-28 11:41:58 +02:00
|
|
|
},
|
|
|
|
"include": ["./src/**/*"]
|
2022-10-27 09:24:07 +02:00
|
|
|
}
|