Files
bedrock/jsconfig.json
2022-07-12 11:27:24 -05:00

20 lines
470 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "resources",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
"paths": {
"@fonts/*": ["fonts/*"],
"@images/*": ["images/*"],
"@scripts/*": ["scripts/*"],
"@styles/*": ["styles/*"]
},
"target": "es5"
},
"include": ["bud.config.mjs", "resources"],
"exclude": ["public"]
}