Website/tsconfig.json

36 lines
666 B
JSON
Raw Permalink Normal View History

2024-07-12 22:56:04 +00:00
{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"moduleResolution": "node",
2024-07-14 14:26:52 +00:00
"allowJs": false,
2024-07-12 22:56:04 +00:00
"noImplicitAny": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {
"~*": [
2024-07-30 03:36:45 +00:00
"./src/*"
2024-07-12 22:56:04 +00:00
],
2024-07-30 03:36:45 +00:00
"@component/*": [
"./src/Component/*"
2024-07-12 22:56:04 +00:00
],
2024-07-30 03:36:45 +00:00
"@framework/*": [
"./src/Framework/*"
2024-07-12 22:56:04 +00:00
],
2024-07-14 14:26:52 +00:00
"@pkg/*": [
2024-07-30 03:36:45 +00:00
"./src/Framework/Package/*"
2024-07-14 14:26:52 +00:00
],
2024-07-12 22:56:04 +00:00
"#types/*": [
2024-07-30 03:36:45 +00:00
"./src/Framework/Types/*",
],
"#const/*": [
"./src/Framework/Constants/*",
2024-07-12 22:56:04 +00:00
]
}
},
"include": [
2024-07-30 03:36:45 +00:00
"./src/**/*.ts"
2024-07-14 14:26:52 +00:00
]
2024-07-12 22:56:04 +00:00
}